/* ===== GemBrain - Dark Luxury Theme ===== */

:root {
    --gold: #F5C518;
    --gold-light: #FFD93D;
    --gold-dark: #D4A810;
    --dark-900: #0D0D0D;
    --dark-800: #1A1A1A;
    --dark-700: #252525;
    --dark-600: #333333;
    --dark-500: #444444;
    --light-100: #FFFFFF;
    --light-200: #F5F5F5;
    --light-300: #E0E0E0;
    --light-400: #BDBDBD;
    --light-500: #9E9E9E;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-300);
    background: var(--dark-900);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-out);
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--light-100);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-family: var(--font-body);
    font-weight: 600;
}

.gold {
    color: var(--gold);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.btn-primary {
    background: var(--gold);
    color: var(--dark-900);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 197, 24, 0.3);
}

.btn-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 10px 24px;
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--dark-900);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-100);
}

.logo-gem {
    width: 36px;
    height: 36px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    color: var(--light-400);
}

.nav-links a:not(.btn):hover {
    color: var(--gold);
}

.mobile-toggle {
    display: none;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
    content: '';
    position: absolute;
    left: 4px;
    width: 24px;
    height: 2px;
    background: var(--light-100);
    transition: all 0.3s ease;
}

.mobile-toggle::before { top: 8px; }
.mobile-toggle span { top: 15px; }
.mobile-toggle::after { top: 22px; }

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(245, 197, 24, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid rgba(245, 197, 24, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 24px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--light-400);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.hero-rating span {
    font-size: 0.9rem;
    color: var(--light-400);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Crystal Showcase */
.crystal-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.crystal-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.15) 0%, rgba(255, 182, 193, 0.1) 40%, transparent 70%);
    filter: blur(40px);
    animation: crystalGlow 4s ease-in-out infinite;
}

@keyframes crystalGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.hero-crystal {
    position: relative;
    max-width: 380px;
    width: 100%;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    animation: crystalFloat 5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-crystal:hover {
    transform: scale(1.05) rotate(2deg);
}

@keyframes crystalFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Gem Pills - Feature Graphics Style */
.gem-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px 10px 10px;
    background: rgba(90, 80, 70, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 3;
    animation: gemPillFloat 4s ease-in-out infinite;
}

.gem-pill-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.gem-pill-icon svg {
    width: 18px;
    height: 18px;
}

.gem-pill-icon.orange {
    background: #F5A623;
    color: white;
}

.gem-pill-icon.red {
    background: #E74C3C;
    color: white;
}

.gem-pill-icon.blue {
    background: #3498DB;
    color: white;
}

.gem-pill-icon.pink {
    background: #E91E8C;
    color: white;
}

.gem-pill-content {
    display: flex;
    flex-direction: column;
}

.gem-pill-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gem-pill-value {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Gem Pill Positions - spread out from crystal */
.gem-pill.pill-1 { 
    top: 5%; 
    left: -50%; 
    animation-delay: 0s; 
}

.gem-pill.pill-2 { 
    top: -5%; 
    right: -55%; 
    animation-delay: 0.5s; 
}

.gem-pill.pill-3 { 
    bottom: 40%; 
    left: -55%; 
    animation-delay: 1s; 
}

.gem-pill.pill-4 { 
    bottom: 10%; 
    right: -50%; 
    animation-delay: 1.5s; 
}

@keyframes gemPillFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Legacy phone showcase styles */
.phone-showcase {
    position: relative;
}

.phone-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.gem-orbit {
    position: absolute;
    inset: -40px;
    animation: orbit 20s linear infinite;
}

.orbit-gem {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    filter: blur(0.5px);
}

.gem-1 { top: 10%; left: 50%; }
.gem-2 { top: 70%; left: 5%; }
.gem-3 { top: 60%; right: 0%; }

@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Legacy Info Pills */
.info-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--dark-700);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

.pill-icon {
    font-size: 1.5rem;
}

.pill-label {
    display: block;
    font-size: 0.75rem;
    color: var(--light-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pill-value {
    font-weight: 600;
    color: var(--light-100);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--light-500);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Stats Bar ===== */
.stats-bar {
    padding: 60px 0;
    background: var(--dark-800);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== Features Section ===== */
.features {
    padding: 120px 0;
    background: var(--dark-900);
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(245, 197, 24, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-intro p {
    color: var(--light-500);
    font-size: 1.1rem;
    margin-top: 16px;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    position: relative;
    padding: 40px 32px;
    background: var(--dark-800);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.4s var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 197, 24, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-card.featured {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-800) 100%);
    border-color: rgba(245, 197, 24, 0.3);
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: var(--gold);
    color: var(--dark-900);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 197, 24, 0.1);
    border-radius: 16px;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--light-500);
    line-height: 1.7;
}

.feature-highlights {
    list-style: none;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--light-300);
}

.feature-highlights li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 120px 0;
    background: var(--gold);
    color: var(--dark-900);
}

.section-intro.light .section-tag {
    background: rgba(0, 0, 0, 0.1);
    color: var(--dark-900);
}

.section-intro.light h2 {
    color: var(--dark-900);
}

.section-intro.light .gold {
    color: var(--dark-700);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.step-content {
    background: var(--dark-800);
    border-radius: 24px;
    padding: 32px 24px;
    color: var(--light-100);
}

.step-image {
    width: 180px;
    height: 360px;
    margin: 0 auto 24px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-content h3 {
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--light-500);
}

.step-connector {
    width: 80px;
    padding-top: 180px;
    color: rgba(0, 0, 0, 0.2);
}

.step-connector svg {
    width: 100%;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 120px 0;
    background: var(--dark-900);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    padding: 40px 32px;
    background: var(--dark-800);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.3s var(--ease-out);
}

.testimonial:hover {
    border-color: rgba(245, 197, 24, 0.2);
    transform: translateY(-4px);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-300);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-900);
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--light-100);
}

.author-role {
    font-size: 0.85rem;
    color: var(--light-500);
}

/* ===== Download Section ===== */
.download-section {
    position: relative;
    padding: 120px 0;
    background: var(--dark-800);
    overflow: hidden;
}

.download-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gem-float {
    position: absolute;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    opacity: 0.05;
    animation: gemFloat 15s ease-in-out infinite;
}

.gem-f1 { width: 200px; height: 200px; top: 10%; left: 5%; animation-delay: 0s; }
.gem-f2 { width: 150px; height: 150px; top: 60%; right: 10%; animation-delay: 5s; }
.gem-f3 { width: 100px; height: 100px; bottom: 20%; left: 30%; animation-delay: 10s; }

@keyframes gemFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.download-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.download-content h2 {
    margin-bottom: 16px;
}

.download-content > p {
    font-size: 1.1rem;
    color: var(--light-500);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    background: var(--dark-600);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: all 0.3s var(--ease-out);
}

.store-btn:hover {
    background: var(--dark-500);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.store-btn svg {
    width: 28px;
    height: 28px;
    color: var(--light-100);
}

.store-btn div {
    text-align: left;
}

.store-btn span {
    display: block;
    font-size: 0.75rem;
    color: var(--light-500);
}

.store-btn strong {
    font-size: 1.1rem;
    color: var(--light-100);
}

.qr-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.qr-box {
    padding: 16px;
    background: var(--light-100);
    border-radius: 16px;
}

.qr-download span {
    font-size: 0.9rem;
    color: var(--light-500);
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 40px;
    background: var(--dark-900);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand > p {
    color: var(--light-500);
    max-width: 280px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-700);
    border-radius: 10px;
    color: var(--light-400);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--dark-900);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light-100);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    padding: 8px 0;
    color: var(--light-500);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--light-500);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.9rem;
    color: var(--light-500);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero p {
        margin: 0 auto 36px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .info-pill,
    .gem-pill {
        display: none;
    }
    
    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        display: none;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .stats-grid {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
    }
    
    .feature-card.featured {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-label {
        font-size: 0.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-rating {
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .store-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ===== Mobile Menu Active State ===== */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-800);
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 20px;
}

.mobile-toggle.active::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span {
    opacity: 0;
}

.mobile-toggle.active::after {
    transform: rotate(-45deg) translate(5px, -5px);
}
