/* ============================================
   GTA VI Vorbestellen — Styles
   Inspired by: autoresearch.lol (clean, bold, dark)
   Palette: #1A1A2E (bg), #FF69B4 (pink), #00CED1 (cyan), #FFD700 (gold)
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #1A1A2E;
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background: rgba(255, 105, 180, 0.3);
    color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: #FF69B4;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #00CED1;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: #FF69B4;
    color: #1A1A2E;
    border-color: #FF69B4;
}

.btn-primary:hover {
    background: #ff4da1;
    border-color: #ff4da1;
    color: #1A1A2E;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 105, 180, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #FF69B4;
    border-color: #FF69B4;
}

.btn-secondary:hover {
    background: rgba(255, 105, 180, 0.1);
    color: #FF69B4;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ---------- Section Labels ---------- */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #FF69B4;
    margin-bottom: 12px;
    padding: 4px 12px;
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 4px;
    background: rgba(255, 105, 180, 0.05);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.125rem;
    color: #999;
    max-width: 720px;
    line-height: 1.7;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    transition: background 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    position: relative;
}

.logo-icon {
    flex-shrink: 0;
    animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #FF69B4;
}

.logo-badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1A1A2E;
    background: #FFD700;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #999;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 105, 180, 0.08);
}

.nav-cta {
    background: rgba(255, 105, 180, 0.12) !important;
    color: #FF69B4 !important;
    font-weight: 600 !important;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.nav-cta:hover {
    background: #FF69B4 !important;
    color: #1A1A2E !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 105, 180, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 50% 100%, rgba(0, 206, 209, 0.05) 0%, transparent 60%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(0deg, rgba(255, 105, 180, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 105, 180, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #FFD700;
    padding: 8px 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 6px;
    background: rgba(255, 215, 0, 0.06);
    margin-bottom: 16px;
}

.hero-platforms {
    font-size: 0.85rem;
    font-weight: 600;
    color: #00CED1;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #fff;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FF69B4 0%, #00CED1 50%, #FF69B4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #999;
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Release Banner ---------- */
.release-banner {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 105, 180, 0.1);
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    background: rgba(255, 105, 180, 0.03);
}

.release-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.release-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FFD700;
    font-size: 0.75rem;
}

.release-date {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.release-divider {
    color: rgba(255, 105, 180, 0.3);
}

.release-platform {
    font-weight: 600;
    color: #00CED1;
    padding: 4px 12px;
    border: 1px solid rgba(0, 206, 209, 0.2);
    border-radius: 4px;
    font-size: 0.8rem;
}

/* ---------- Story Section ---------- */
.story-section {
    padding: 100px 0;
}

.story-section .section-desc {
    font-size: 1.1rem;
    color: #bbb;
}

.story-visual {
    margin-top: 48px;
    padding: 100px 40px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 105, 180, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}

.story-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 105, 180, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 206, 209, 0.08) 0%, transparent 50%);
    animation: ambient-glow 6s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes ambient-glow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-5%, -5%); }
}

.story-visual-text {
    position: relative;
    z-index: 3;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.neon-text {
    color: #FF69B4;
    text-shadow: 
        0 0 10px rgba(255, 105, 180, 0.5),
        0 0 20px rgba(255, 105, 180, 0.3),
        0 0 40px rgba(255, 105, 180, 0.1);
}

/* ---------- Characters Section ---------- */
.characters-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.15);
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.character-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.character-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 105, 180, 0.2);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.08);
}

.character-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.character-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.95));
}

.character-body {
    padding: 20px 24px 28px;
}

.character-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.character-desc {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}

/* ---------- Locations Section ---------- */
.locations-section {
    padding: 100px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.location-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 206, 209, 0.2);
    box-shadow: 0 12px 40px rgba(0, 206, 209, 0.08);
}

.location-visual {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.location-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.3s ease;
}

.location-card:hover .location-visual-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.location-visual-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.location-body {
    padding: 20px 20px 24px;
}

.location-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.location-body p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}

/* ---------- Features Section (Only in Leonida) ---------- */
.features-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.15);
}

.features-section .section-desc {
    margin-bottom: 48px;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card-new {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card-new:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 105, 180, 0.2);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.08);
}

.feature-card-visual {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.feature-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.9));
}

.feature-card-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FF69B4;
    line-height: 1;
    opacity: 0.7;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.feature-card-body {
    padding: 24px;
}

.feature-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.feature-card-body p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
}

/* ---------- Media Section ---------- */
.media-section {
    padding: 100px 0;
}

.media-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    margin-top: 48px;
}

.media-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.3s ease;
}

.media-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    transition: background 0.3s ease;
}

.media-card:hover .media-card-overlay {
    background: rgba(0, 0, 0, 0.25);
}

.media-play-overlay,
.media-icon-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.media-card-large {
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 300px;
}

.media-card:hover {
    border-color: rgba(255, 105, 180, 0.2);
    box-shadow: 0 8px 32px rgba(255, 105, 180, 0.1);
}

.media-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
}

/* ---------- Pre-Order Section ---------- */
.preorder-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.15);
}

.preorder-card {
    text-align: center;
    padding: 64px 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.06), rgba(0, 206, 209, 0.06));
    border: 1px solid rgba(255, 105, 180, 0.15);
    position: relative;
    overflow: hidden;
}

.preorder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF69B4, #00CED1, #FFD700);
}

.preorder-title {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FF69B4, #00CED1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preorder-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 16px;
}

.preorder-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.platform-tag {
    padding: 6px 16px;
    border: 1px solid rgba(0, 206, 209, 0.2);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #00CED1;
}

.preorder-desc {
    font-size: 1.05rem;
    color: #999;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.preorder-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 16px;
}

/* ---------- FAQ Section ---------- */
.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 720px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(255, 105, 180, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #ddd;
    text-align: left;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 105, 180, 0.04);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.7;
}

/* ---------- Final CTA ---------- */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255, 105, 180, 0.06) 0%, transparent 70%);
}

.final-cta-title {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
}

.final-cta-desc {
    font-size: 1.15rem;
    color: #999;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid rgba(255, 105, 180, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 12px 32px;
}

.footer-links a {
    font-size: 0.875rem;
    color: #888;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #FF69B4;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #555;
}

/* ---------- Cursor Glow ---------- */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .cursor-glow {
        display: none;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .characters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-grid {
        grid-template-columns: 1fr 1fr;
    }

    .media-card-large {
        grid-column: span 2;
    }

    .features-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(12px);
        padding: 16px 24px;
        border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .final-cta-title {
        font-size: 1.8rem;
    }

    .preorder-title {
        font-size: 2rem;
    }

    .characters-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .media-card-large {
        grid-column: span 1;
    }

    .feature-card-new {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px;
    }

    .features-grid-new {
        grid-template-columns: 1fr;
    }

    .preorder-card {
        padding: 40px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }
}
