* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0e0f12;
    color: #e5e7eb;
    font-family: system-ui, sans-serif;
}

header {
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
}

.logo {
    font-size: 15px;
    font-weight: 600;
}

nav span {
    margin-left: 26px;
    font-size: 14px;
    color: #9ca3af;
    cursor: pointer;
}

nav span:hover {
    color: white;
}

main {
    max-width: 1100px;
    margin: auto;
    padding: 120px 40px;
}

.tab { display: none; }
.tab.active { display: block; }

h1 {
    font-size: 40px;
    margin-bottom: 18px;
}

.subtitle {
    color: #9ca3af;
    max-width: 640px;
    line-height: 1.6;
}

/* PREVIEWS */
.previews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.previews img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #1f2937;
    cursor: pointer;
}

/* BUTTON */
.download-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 36px;
    border: 1px solid #374151;
    background: #111827;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

/* FANART */
.fanart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.fanart-card {
    text-align: center;
}

.fanart-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #1f2937;
    cursor: pointer;
}

.fanart-card span {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #9ca3af;
}

/* DARK NEWS */
.dark-news {
    margin-top: 80px;
    text-align: center;
}

.dark-news img {
    width: 100%;
    max-width: 720px;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #1f2937;
    margin-bottom: 32px;
    cursor: pointer;
}

.dark-news h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.dark-news p {
    font-size: 20px;
    color: #6b7280;
    letter-spacing: 2px;
}

/* BETA */
.beta-box {
    max-width: 360px;
}

.beta-box input,
.beta-box button {
    width: 100%;
    padding: 12px;
    font-size: 13px;
    border-radius: 4px;
}

.beta-box input {
    background: #0b0d12;
    border: 1px solid #374151;
    color: white;
}

.beta-box button {
    margin-top: 12px;
    background: #111827;
    border: 1px solid #374151;
    color: white;
    cursor: pointer;
}

.hidden {
    display: none;
}

/* CREDITS */
.credits-box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.credits-box div {
    text-align: center;
}

.credits-box span {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 6px;
}

/* IMAGE MODAL */
#imageModal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
}

#imageModal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}
