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

:root {
    --pantheon-gold: #FFB800;
    --pantheon-dark-gold: #8B6914;
    --dark: #0A0A0A;
    --card: #1A1A1A;
    --border: rgba(255, 255, 255, 0.05);
    --text-primary: #FFFFFF;
    --text-secondary: #999999;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.nav-menu a.nav-active {
    background: var(--pantheon-gold);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 10rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--pantheon-gold);
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    max-width: 600px;
}

.text-highlight {
    color: var(--pantheon-gold);
    font-weight: 800;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 550px;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pantheon-gold);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.5);
    background: #FFD700;
}

/* ===== PHONE MOCKUP WITH CAROUSEL ===== */
.hero-phone {
    display: flex;
    justify-content: center;
}

.phone {
    position: relative;
}

.phone-bezel {
    width: 320px;
    height: 680px;
    background: #000;
    border-radius: 40px;
    padding: 8px;
    box-shadow:
        0 0 0 2px #333,
        0 40px 80px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.phone-notch {
    display: none;
}

.phone-screen-container {
    width: 100%;
    height: 100%;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 34px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 4rem 0 6rem;
}

.features-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    max-width: 600px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--card);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 184, 0, 0.3);
}

.feature-card.wide-card {
    grid-column: span 2;
}

.feature-card.tall-card {
    grid-row: span 2;
}

.card-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--pantheon-gold);
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* ===== PANTHEON ICONS ===== */
.pantheon-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pantheon-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    min-width: 80px;
    transition: all 0.3s;
}

.pantheon-icon span {
    font-size: 2rem;
}

.pantheon-icon small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.pantheon-icon.greek:hover { background: rgba(255, 184, 0, 0.2); }
.pantheon-icon.egyptian:hover { background: rgba(0, 191, 255, 0.2); }
.pantheon-icon.norse:hover { background: rgba(148, 0, 211, 0.2); }
.pantheon-icon.roman:hover { background: rgba(220, 20, 60, 0.2); }
.pantheon-icon.aztec:hover { background: rgba(34, 139, 34, 0.2); }

/* ===== RARITY SHOWCASE ===== */
.rarity-showcase {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rarity-card {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rarity-card.common {
    background: rgba(128, 128, 128, 0.2);
    border: 1px solid rgba(128, 128, 128, 0.5);
    color: #C0C0C0;
}

.rarity-card.silver {
    background: rgba(192, 192, 192, 0.2);
    border: 1px solid rgba(192, 192, 192, 0.8);
    color: #E8E8E8;
}

.rarity-card.gold {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.8);
    color: #FFD700;
}

.rarity-card.black {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 184, 0, 0.6);
    color: var(--pantheon-gold);
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
}

/* ===== PACKS SHOWCASE ===== */
.packs-showcase {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.pack-card {
    flex: 1;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.pack-card.basic {
    background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 100%);
    border: 1px solid rgba(128, 128, 128, 0.3);
}

.pack-card.premium {
    background: linear-gradient(135deg, #8B6914 0%, #5a4510 100%);
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.pack-card.elite {
    background: linear-gradient(135deg, var(--pantheon-gold) 0%, var(--pantheon-dark-gold) 100%);
    border: 1px solid var(--pantheon-gold);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.4);
}

.pack-name {
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
}

.pack-card.basic .pack-name { color: #C0C0C0; }
.pack-card.premium .pack-name { color: #FFD700; }
.pack-card.elite .pack-name { color: var(--dark); }

.pack-card small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.pack-card.basic small { color: #999; }
.pack-card.premium small { color: #E8B700; }
.pack-card.elite small { color: rgba(0, 0, 0, 0.7); }

/* ===== AVATARS GRID ===== */
.avatars-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 0;
}

.avatar-row {
    display: flex;
    gap: 0.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--card);
}

.you-avatar {
    background: var(--pantheon-gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
}

/* ===== PANTHEONS SECTION ===== */
.pantheons-section {
    padding: 6rem 0;
    background: var(--card);
}

.pantheons-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
}

.pantheons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.pantheon-card {
    background: var(--dark);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
    cursor: pointer;
}

.pantheon-card:hover {
    transform: translateY(-8px);
    border-color: var(--pantheon-gold);
}

.pantheon-bg {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: grayscale(0.3);
    transition: filter 0.3s;
}

.pantheon-card:hover .pantheon-bg {
    filter: grayscale(0);
}

.pantheon-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--pantheon-gold);
}

.pantheon-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pantheon-card.greek:hover { box-shadow: 0 10px 40px rgba(255, 184, 0, 0.2); }
.pantheon-card.egyptian:hover { box-shadow: 0 10px 40px rgba(0, 191, 255, 0.2); }
.pantheon-card.norse:hover { box-shadow: 0 10px 40px rgba(148, 0, 211, 0.2); }
.pantheon-card.roman:hover { box-shadow: 0 10px 40px rgba(220, 20, 60, 0.2); }
.pantheon-card.aztec:hover { box-shadow: 0 10px 40px rgba(34, 139, 34, 0.2); }

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 6rem 0;
    background: var(--card);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--pantheon-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 6rem 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--card);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--border);
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-secondary);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 6rem 0;
    background: var(--card);
}

.faq-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--dark);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--pantheon-gold);
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
}

.contact-btn {
    display: inline-block;
    background: var(--pantheon-gold);
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.4);
}

/* ===== FOOTER CTA ===== */
.footer-cta {
    padding: 6rem 0;
    background: var(--card);
    text-align: center;
}

.footer-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-icon {
    margin-bottom: 0.5rem;
}

.footer-brand {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
}

.footer-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    max-width: 700px;
    line-height: 1.2;
}

.footer-download-btn {
    background: var(--pantheon-gold);
    color: var(--dark);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 1rem;
}

.footer-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.footer-links a {
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--pantheon-gold) !important;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-phone {
        order: -1;
    }

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

    .feature-card.wide-card,
    .feature-card.tall-card {
        grid-column: span 1;
        grid-row: span 1;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .pantheons-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

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

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

    .hero-section {
        padding: 8rem 0 4rem;
    }

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

    .hero-description {
        font-size: 1.1rem;
    }

    .phone-bezel {
        width: 280px;
        height: 570px;
    }

    .features-heading,
    .faq-heading,
    .pantheons-heading {
        font-size: 2rem;
    }

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

    .big-rating {
        font-size: 4rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .packs-showcase {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===== MOBILE MENU ACTIVE STATE ===== */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 2rem;
    gap: 1rem;
    border-top: 1px solid var(--border);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
