@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&family=Cinzel:wght@700;900&family=Orbitron:wght@700;900&display=swap');

:root {
    --bg-dark: #050608;
    --bg-card: rgba(14, 17, 26, 0.8);
    --gold-primary: #f1c40f;
    --gold-dark: #b8860b;
    --gold-glow: rgba(241, 196, 15, 0.4);
    --green-neon: #34d399;
    --green-glow: rgba(52, 211, 153, 0.4);
    --cyan-neon: #38bdf8;
    --cyan-glow: rgba(56, 189, 248, 0.4);
    --crimson-neon: #f43f5e;
    --crimson-glow: rgba(244, 63, 94, 0.4);
    --text-main: #ffffff;
    --text-muted: #a0a5b5;
    --border-neon: rgba(241, 196, 15, 0.3);
    --border-glass: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Pulsing Neon Glow Background Elements */
.neon-ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
    animation: neonPulse 8s infinite alternate ease-in-out;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(241, 196, 15, 0.12);
    top: -100px;
    left: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(52, 211, 153, 0.08);
    bottom: 10%;
    right: -100px;
    animation-delay: -3s;
}

.glow-3 {
    width: 550px;
    height: 550px;
    background: rgba(244, 63, 94, 0.08);
    top: 50%;
    left: 40%;
    animation-delay: -5s;
}

@keyframes neonPulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
    50% { transform: scale(1.15) translate(30px, -20px); opacity: 1; }
    100% { transform: scale(0.9) translate(-20px, 30px); opacity: 0.7; }
}

/* Glassmorphism Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: rgba(5, 6, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-neon);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img-glow {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 0 8px var(--gold-primary));
}

.logo-title {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--gold-primary);
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--gold-glow);
}

.badge-prereg-neon {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 900;
    background: rgba(241, 196, 15, 0.15);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 0 12px var(--gold-glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    color: var(--gold-primary);
    text-shadow: 0 0 10px var(--gold-glow);
}

.nav-play-lock {
    color: #f43f5e !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-decoration: none;
    transition: text-shadow 0.3s;
}

.nav-play-lock:hover {
    text-shadow: 0 0 12px var(--crimson-glow);
}

.nav-playstore-btn-neon {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f1c40f 0%, #b8860b 100%);
    color: #000 !important;
    padding: 11px 20px;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900 !important;
    font-size: 12px !important;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px var(--gold-glow);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-playstore-btn-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(241, 196, 15, 0.8);
}

/* FULL SCREEN HERO SECTION WITH PROMO BANNER BACKGROUND */
.hero-fullscreen {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 120px 60px 60px 60px;
    background: url('images/preregister_hero_banner.jpg') right 18% top 12% / cover no-repeat;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 48% 30%, rgba(5, 6, 8, 0.05) 0%, rgba(5, 6, 8, 0.65) 38%, rgba(5, 6, 8, 0.9) 70%),
        linear-gradient(to right, rgba(5, 6, 8, 0.94) 0%, rgba(5, 6, 8, 0.85) 32%, rgba(5, 6, 8, 0.15) 48%, rgba(5, 6, 8, 0.88) 72%),
        linear-gradient(to bottom, rgba(5, 6, 8, 0.2) 0%, rgba(5, 6, 8, 0.95) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-main-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.status-pill-neon {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid var(--green-neon);
    color: var(--green-neon);
    padding: 8px 18px;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    width: fit-content;
    box-shadow: 0 0 15px var(--green-glow);
}

.pulse-ring {
    width: 8px;
    height: 8px;
    background-color: var(--green-neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green-neon);
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.4); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.hero-title-neon {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.text-gold-neon {
    color: var(--gold-primary);
    text-shadow: 0 0 15px var(--gold-glow);
}

.text-green-neon {
    color: var(--green-neon);
    text-shadow: 0 0 15px var(--green-glow);
}

.text-cyan-neon {
    color: var(--cyan-neon);
    text-shadow: 0 0 15px var(--cyan-glow);
}

.text-crimson-neon {
    color: var(--crimson-neon);
    text-shadow: 0 0 15px var(--crimson-glow);
}

.hero-lead-text {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 650px;
}

.cta-hero-group {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.google-play-mega-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(14, 17, 26, 0.9);
    backdrop-filter: blur(15px);
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    padding: 20px 32px;
    text-decoration: none;
    box-shadow: 0 0 35px var(--gold-glow);
    transition: all 0.3s ease;
    width: fit-content;
}

.google-play-mega-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 55px rgba(241, 196, 15, 0.8);
    border-color: #ffffff;
}

.gp-logo-glow {
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.4));
}

.gp-label-box {
    display: flex;
    flex-direction: column;
}

.gp-sub-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.gp-main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin: 2px 0;
}

.gp-wishlist-tag {
    font-size: 12px;
    font-weight: 800;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

.hero-bonus-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    padding: 14px 20px;
    border-radius: 16px;
    font-size: 14px;
    color: var(--green-neon);
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.15);
}

.gift-icon {
    font-size: 22px;
}

/* Right Side Stats Grid */
.hero-stats-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-neon-card {
    background: rgba(14, 17, 26, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-neon);
    border-radius: 20px;
    padding: 26px 20px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
    transition: transform 0.3s;
}

.stat-neon-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Section Common Styling */
.reward-section, .features-section, .gallery-section {
    max-width: 1350px;
    margin: 100px auto;
    padding: 0 40px;
}

.section-title-box {
    text-align: center;
    margin-bottom: 60px;
}

.neon-section-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 900;
    color: var(--gold-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--gold-glow);
}

.neon-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 34px;
    font-weight: 900;
    margin: 10px 0 14px 0;
    letter-spacing: 1px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

/* Reward Cards Grid */
.reward-neon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.reward-neon-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
    overflow: hidden;
}

.reward-neon-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 0 40px var(--gold-glow);
}

.reward-icon-box {
    font-size: 44px;
    margin-bottom: 16px;
}

.reward-val-neon {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
}

.reward-name {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
}

.reward-info {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Features Grid */
.features-neon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feat-neon-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.3s ease;
}

.feat-neon-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 30px rgba(241, 196, 15, 0.25);
    transform: translateY(-5px);
}

.feat-icon-glow {
    font-size: 40px;
    margin-bottom: 20px;
}

.feat-neon-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.feat-neon-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Gallery Section Grid */
.gallery-neon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-neon-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-neon);
    background: rgba(12, 15, 24, 0.95);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.gallery-neon-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--gold-primary);
    box-shadow: 0 0 40px var(--gold-glow);
}

.gallery-neon-img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    display: block;
    background: #040508;
    padding: 14px 14px 0 14px;
}

.banner-card-img {
    object-fit: cover !important;
    height: 240px !important;
    padding: 0 !important;
}

.gallery-neon-caption {
    padding: 16px 20px;
    background: rgba(8, 10, 16, 0.98);
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
}

.gallery-neon-caption h4 {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
}

.gallery-neon-caption p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.5;
}


/* Footer */
.footer-neon {
    border-top: 1px solid var(--border-neon);
    padding: 50px 40px;
    background: #030406;
    margin-top: 120px;
}

.footer-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--gold-primary);
}

.footer-brand img {
    width: 34px;
    height: 34px;
}

.footer-nav {
    display: flex;
    gap: 36px;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--gold-primary);
}

.footer-copyright {
    font-size: 13px;
    color: #4b5563;
}

/* Discord Button Styles */
.nav-discord-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #5865F2;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900 !important;
    font-size: 12px !important;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.7);
    background: #4752c4;
}

.discord-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #5865F2;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 16px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
    width: fit-content;
}

.discord-hero-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 45px rgba(88, 101, 242, 0.7);
    background: #4752c4;
}


/* Discord Button Styles */
.nav-discord-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #5865F2;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900 !important;
    font-size: 12px !important;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.7);
    background: #4752c4;
}

.discord-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #5865F2;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 16px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
    width: fit-content;
}

.discord-hero-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 45px rgba(88, 101, 242, 0.7);
    background: #4752c4;
}


/* Discord Graphic Banner Button Styles */
.discord-banner-btn {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.discord-banner-img {
    width: 340px;
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    border: 2px solid rgba(88, 101, 242, 0.6);
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.4);
    display: block;
    transition: all 0.3s ease;
}

.discord-banner-btn:hover .discord-banner-img {
    transform: translateY(-4px) scale(1.03);
    border-color: #f1c40f;
    box-shadow: 0 0 45px rgba(241, 196, 15, 0.8), 0 0 25px rgba(88, 101, 242, 0.6);
}



/* Fullscreen Screenshot Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 6, 10, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    cursor: zoom-out;
}

.lightbox-content {
    max-width: 92vw;
    max-height: 84vh;
    object-fit: contain;
    border-radius: 18px;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 50px rgba(241, 196, 15, 0.6);
    animation: zoomInModal 0.25s ease-out;
    cursor: default;
}

@keyframes zoomInModal {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-caption-text {
    margin-top: 16px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    background: rgba(14, 17, 26, 0.95);
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid var(--border-neon);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 32px;
    color: var(--gold-primary);
    font-size: 42px;
    font-weight: 900;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover {
    color: #ffffff;
    transform: scale(1.15);
}

.gallery-neon-img {
    cursor: zoom-in;
}


/* Flag Language Switcher Buttons */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(14, 17, 26, 0.8);
    border: 1px solid var(--border-neon);
    padding: 4px 8px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.flag-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.25s ease;
}

.flag-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.flag-active {
    background: rgba(241, 196, 15, 0.2) !important;
    border-color: var(--gold-primary) !important;
    color: var(--gold-primary) !important;
    box-shadow: 0 0 12px var(--gold-glow);
}

.flag-code {
    font-size: 11px;
    letter-spacing: 0.5px;
}


/* Live Pre-Registration Counter Styling */
.live-prereg-card {
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 30px var(--gold-glow), inset 0 0 15px rgba(241, 196, 15, 0.15) !important;
}

.pulse-counter {
    animation: counterGlowPulse 2s infinite alternate ease-in-out;
}

@keyframes counterGlowPulse {
    0% { text-shadow: 0 0 10px var(--gold-glow); transform: scale(1); }
    100% { text-shadow: 0 0 25px rgba(241, 196, 15, 0.9), 0 0 40px rgba(241, 196, 15, 0.5); transform: scale(1.04); }
}


/* Counter Click Pop Animation */
.click-pop-anim {
    animation: counterPopGlow 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

@keyframes counterPopGlow {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); color: #ffffff !important; text-shadow: 0 0 35px #f1c40f, 0 0 50px #2ecc71; }
    100% { transform: scale(1); }
}

@media (max-width: 1024px) {
    .hero-content-wrapper { grid-template-columns: 1fr; }
    .reward-neon-grid { grid-template-columns: repeat(2, 1fr); }
    .features-neon-grid { grid-template-columns: 1fr; }
    .hero-title-neon { font-size: 36px; }
}



/* ==========================================================================
   PERFECT MOBILE & RESPONSIVE LAYOUT OVERHAUL (iOS & Android Smartphones)
   ========================================================================== */

/* Prevent horizontal overflow globally */
html, body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

img, svg {
    max-width: 100%;
    height: auto;
}

/* Tablet & Laptop Adjustments (<= 1024px) */
@media (max-width: 1024px) {
    .hero-fullscreen {
        padding: 130px 24px 60px 24px;
        min-height: auto;
    }

    .hero-content-wrapper {
        flex-direction: column;
        gap: 36px;
        width: 100%;
        max-width: 100%;
    }

    .hero-main-box {
        max-width: 100%;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .cta-hero-group {
        align-items: center;
        width: 100%;
        max-width: 400px;
    }

    .google-play-mega-btn, .discord-banner-btn {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-stats-box {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Smartphone Adjustments (<= 768px) */
@media (max-width: 768px) {
    /* Glass Navbar Mobile Overhaul */
    .glass-nav {
        padding: 10px 12px !important;
        width: 100% !important;
        max-width: 100vw !important;
        flex-direction: column !important;
        gap: 8px !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .glass-nav > div, .logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 6px;
    }

    .logo {
        justify-content: flex-start !important;
        width: auto !important;
    }

    .logo-img-glow {
        width: 32px;
        height: 32px;
    }

    .logo-title {
        font-size: 16px !important;
        letter-spacing: 0.5px;
    }

    .badge-prereg-neon {
        font-size: 8px !important;
        padding: 2px 5px !important;
    }

    .lang-switcher {
        padding: 2px 4px !important;
        gap: 2px !important;
        margin-left: auto;
    }

    .flag-btn {
        padding: 3px 5px !important;
        font-size: 11px !important;
    }

    .flag-code {
        display: none !important; /* Hide PT/EN text on small screens so flags fit */
    }

    .nav-links {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 6px !important;
        width: 100% !important;
        padding-top: 6px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .nav-item {
        font-size: 11px !important;
        padding: 4px 8px !important;
    }

    .nav-play-lock, .nav-discord-btn, .nav-playstore-btn-neon {
        padding: 6px 10px !important;
        font-size: 10px !important;
        border-radius: 8px !important;
    }

    /* Hero Section Mobile Centering & Scaling */
    .hero-fullscreen {
        padding: 155px 14px 40px 14px !important;
        width: 100% !important;
        max-width: 100vw !important;
        background-position: center top !important;
    }

    .status-pill-neon {
        font-size: 10px !important;
        padding: 6px 12px !important;
        white-space: normal !important;
        text-align: center !important;
        max-width: 100% !important;
        line-height: 1.4 !important;
    }

    .hero-title-neon {
        font-size: 24px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        margin: 12px 0 !important;
        width: 100% !important;
    }

    .hero-lead-text {
        font-size: 13px !important;
        line-height: 1.55 !important;
        text-align: center !important;
        padding: 0 4px !important;
        width: 100% !important;
    }

    .cta-hero-group {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 8px;
        align-items: center !important;
    }

    .google-play-mega-btn {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 14px !important;
        gap: 10px !important;
        justify-content: center !alignment;
    }

    .gp-logo-glow svg {
        width: 32px !important;
        height: 32px !important;
    }

    .gp-main-title {
        font-size: 14px !important;
    }

    .gp-sub-title {
        font-size: 8px !important;
    }

    .gp-wishlist-tag {
        font-size: 9px !important;
    }

    .discord-banner-btn {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .discord-banner-img {
        width: 100% !important;
        max-width: 340px !important;
        height: auto !important;
    }

    .hero-bonus-banner {
        font-size: 11px !important;
        padding: 10px 12px !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 6px !important;
        width: 100% !important;
    }

    /* Hero Stats Grid on Mobile */
    .hero-stats-box {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .stat-neon-card {
        padding: 12px 8px !important;
    }

    .stat-value {
        font-size: 20px !important;
    }

    .stat-label {
        font-size: 10px !important;
    }

    /* Sections Mobile Padding & Grids */
    .reward-section, .features-section, .gallery-section {
        padding: 40px 14px !important;
        width: 100% !important;
    }

    .section-title-box {
        margin-bottom: 24px !important;
        text-align: center !important;
    }

    .neon-section-title {
        font-size: 20px !important;
    }

    .section-subtitle {
        font-size: 12px !important;
    }

    .reward-neon-grid, .features-neon-grid, .gallery-neon-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        width: 100% !important;
    }

    .gallery-neon-img {
        height: 340px !important;
        padding: 8px 8px 0 8px !important;
    }

    /* Lightbox Modal on Mobile */
    .lightbox-modal {
        padding: 10px !important;
    }

    .lightbox-content {
        max-width: 96vw !important;
        max-height: 72vh !important;
    }

    .lightbox-caption-text {
        font-size: 12px !important;
        padding: 6px 14px !important;
    }

    .lightbox-close {
        top: 10px !important;
        right: 16px !important;
        font-size: 32px !important;
    }

    /* Footer Mobile */
    .footer-container {
        flex-direction: column !important;
        gap: 16px !important;
        text-align: center !important;
        padding: 30px 14px !important;
    }

    .footer-nav {
        flex-direction: column !important;
        gap: 8px !important;
    }
}

/* Extra Small Phones (<= 380px e.g. iPhone SE, Galaxy Z Flip) */
@media (max-width: 380px) {
    .hero-title-neon {
        font-size: 20px !important;
    }

    .hero-stats-box {
        grid-template-columns: 1fr !important;
    }

    .nav-links {
        gap: 4px !important;
    }

    .nav-item {
        font-size: 10px !important;
        padding: 3px 6px !important;
    }
}
