/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Space Clash Style Intro */

.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
}

.intro-overlay.active {
    opacity: 1;
}

.intro-overlay.fade-out {
    opacity: 0;
}

.intro-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, #F59E0B, transparent),
        radial-gradient(1px 1px at 90px 40px, #06B6D4, transparent),
        radial-gradient(1px 1px at 130px 80px, #EC4899, transparent),
        radial-gradient(2px 2px at 160px 30px, #ffffff, transparent),
        radial-gradient(1px 1px at 50px 120px, #06B6D4, transparent);
    background-repeat: repeat;
    background-size: 200px 150px;
    animation: intro-stars-twinkle 3s ease-in-out infinite alternate;
}

.intro-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.intro-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    animation: intro-logo-fade 5s ease-out forwards;
    z-index: 2;
    width: 100%;
    padding: 0 2rem;
}

.intro-logo {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    color: #FFD700;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.4),
        0 5px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.2em;
    margin: 0;
    animation: intro-logo-glow 2s ease-in-out infinite alternate;
    white-space: nowrap;
    overflow: visible;
}

.intro-tagline {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #06B6D4;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
    margin-top: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.skip-intro {
    position: absolute;
    bottom: 5%;
    right: 5%;
    padding: 1rem 2rem;
    background: rgba(6, 182, 212, 0.2);
    border: 2px solid #06B6D4;
    border-radius: 50px;
    color: #06B6D4;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skip-intro:hover {
    background: rgba(6, 182, 212, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.5);
}

.skip-intro i {
    animation: skip-pulse 1s ease-in-out infinite;
}

/* Intro Animations */
@keyframes intro-stars-twinkle {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes intro-logo-fade {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
    40% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

@keyframes intro-logo-glow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.6),
            0 5px 10px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 1),
            0 0 60px rgba(255, 215, 0, 0.8),
            0 0 90px rgba(255, 215, 0, 0.6),
            0 5px 10px rgba(0, 0, 0, 0.8);
    }
}

@keyframes skip-pulse {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* Responsive Intro */
@media (max-width: 768px) {
    .intro-logo {
        font-size: 3rem;
    }
    
    .intro-tagline {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }
    
    .skip-intro {
        bottom: 3%;
        right: 3%;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .intro-logo {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .intro-tagline {
        font-size: 0.8rem;
    }
    
    .intro-logo-container {
        padding: 0 1rem;
    }
}


:root {
    /* Space-themed Color Palette */
    --primary-purple: #2D1B69;
    --deep-purple: #1A0B3D;
    --cosmic-blue: #0F3460;
    --stellar-blue: #1E3A8A;
    --nebula-purple: #4C1D95;
    --star-gold: #F59E0B;
    --star-silver: #E5E7EB;
    --cosmic-white: #F8FAFC;
    --dark-space: #0F0F23;
    --accent-cyan: #06B6D4;
    --accent-pink: #EC4899;
    
    /* Typography */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Exo 2', sans-serif;
    
    /* Spacing */
    --container-padding: 1rem;
    --section-padding: 4rem 0;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: linear-gradient(135deg, var(--dark-space) 0%, var(--deep-purple) 50%, var(--cosmic-blue) 100%);
    color: var(--cosmic-white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(79, 29, 149, 0.3);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--star-gold);
}

.nav-logo .logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.6));
}

.nav-logo i {
    font-size: 1.8rem;
    color: var(--accent-cyan);
}

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

.nav-link {
    color: var(--cosmic-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--cosmic-white);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Galaxy image fills hero softly behind effects */
.galaxy-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -2;
}

.galaxy-img {
    position: absolute;
    width: 120%;
    height: 120%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.05);
    object-fit: cover;
    filter: saturate(1.2) contrast(1.05) brightness(0.7) blur(0.5px);
    opacity: 0.6;
    will-change: transform, opacity, filter;
}

/* Removed floating circle for cleaner design */

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--star-silver), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--star-gold), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--accent-cyan), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--accent-pink), transparent),
        radial-gradient(2px 2px at 160px 30px, var(--star-silver), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 4s ease-in-out infinite alternate;
}

.nebula {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(236, 72, 153, 0.3) 0%, rgba(79, 29, 149, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.space-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 80%, rgba(245, 158, 11, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: overlay-pulse 8s ease-in-out infinite alternate;
}

@keyframes overlay-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

/* Removed planets element completely */

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.highlight {
    background: linear-gradient(135deg, var(--star-gold), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--star-silver);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--stellar-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-pink), var(--nebula-purple));
    color: white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--cosmic-white);
    border: 2px solid var(--accent-cyan);
}

.btn-outline:hover {
    background: var(--accent-cyan);
    color: var(--dark-space);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-preview {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.preview-frame {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(234, 88, 12, 0.3));
    border-radius: 13px;
    padding: 4px;
    border: none;
    box-shadow: 
        0 0 20px rgba(245, 158, 11, 0.4),
        0 0 40px rgba(234, 88, 12, 0.2),
        inset 0 0 20px rgba(245, 158, 11, 0.1);
    animation: video-border-glow 3s ease-in-out infinite alternate;
}

@keyframes video-border-glow {
    0% {
        box-shadow: 
            0 0 20px rgba(245, 158, 11, 0.4),
            0 0 40px rgba(234, 88, 12, 0.2);
    }
    100% {
        box-shadow: 
            0 0 30px rgba(245, 158, 11, 0.6),
            0 0 60px rgba(234, 88, 12, 0.3),
            0 0 80px rgba(251, 146, 60, 0.2);
    }
}

.preview-content {
    aspect-ratio: 16/9;
    background: linear-gradient(45deg, var(--dark-space), var(--deep-purple));
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.preview-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.game-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.space-battle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
    animation: battle-glow 3s ease-in-out infinite alternate;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--accent-cyan), transparent);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--accent-cyan);
    border-bottom: 2px solid var(--accent-cyan);
    transform: rotate(45deg);
}

/* About the Game Section */
.about-game {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(45, 27, 105, 0.7) 50%, rgba(15, 52, 96, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.about-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 0.5rem;
}

.about-tagline {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--star-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-description {
    color: var(--star-silver);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--star-silver);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.about-feature-item:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: var(--accent-cyan);
    transform: translateX(5px);
}

.about-feature-item i {
    color: var(--accent-cyan);
    font-size: 1.2rem;
    width: 24px;
}

.about-cta-text {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--cosmic-white);
    font-weight: 600;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--star-gold);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.about-img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(6, 182, 212, 0.3);
    transition: var(--transition-smooth);
}

.about-img-main:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(6, 182, 212, 0.3);
}

.about-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--star-gold), var(--accent-cyan));
    border-radius: 30px;
    color: white;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.about-badge i {
    font-size: 1rem;
}

/* Game Screenshots Gallery */
.gallery {
    padding: var(--section-padding);
    background: linear-gradient(180deg, rgba(15, 15, 35, 0.9) 0%, rgba(45, 27, 105, 0.6) 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    filter: brightness(0.3);
    pointer-events: none;
}

.gallery .container {
    position: relative;
    z-index: 1;
}

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

.gallery-item.gallery-large {
    grid-column: span 2;
    aspect-ratio: 21/9;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    border: 2px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(15, 15, 35, 0.95) 0%, rgba(15, 15, 35, 0.7) 50%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--cosmic-white);
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    color: var(--accent-cyan);
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 35, 0.5) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--cosmic-white), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--star-silver);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: rgba(45, 27, 105, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: var(--transition-smooth);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--stellar-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cosmic-white);
}

.feature-card p {
    color: var(--star-silver);
    line-height: 1.6;
}

/* Product Roadmap Section */
.roadmap {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(45, 27, 105, 0.7) 100%);
    position: relative;
    overflow: hidden;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1464802686167-b939a6910659?auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    filter: brightness(0.4);
    pointer-events: none;
}

.roadmap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.roadmap .container {
    position: relative;
    z-index: 1;
}

.roadmap-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 2rem 0;
    overflow-x: auto;
    gap: 1rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, 
        var(--star-gold) 0%, 
        var(--accent-cyan) 25%, 
        var(--accent-pink) 50%, 
        var(--nebula-purple) 75%, 
        var(--stellar-blue) 100%);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.timeline-item {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    z-index: 2;
    border: 4px solid var(--dark-space);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.timeline-item.completed .timeline-marker {
    background: linear-gradient(135deg, var(--star-gold), #EAB308);
    animation: pulse-gold 2s ease-in-out infinite;
}

.timeline-item.achieved .timeline-marker {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    animation: pulse-achieved 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
}

.timeline-item.achieved .timeline-content {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.timeline-item.achieved .timeline-date {
    color: #22C55E;
}

.timeline-item.current .timeline-marker {
    background: linear-gradient(135deg, var(--accent-cyan), var(--stellar-blue));
    animation: pulse-cyan 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
}

.timeline-item.upcoming .timeline-marker {
    background: linear-gradient(135deg, var(--accent-pink), var(--nebula-purple));
    opacity: 0.7;
}

.timeline-content {
    background: rgba(45, 27, 105, 0.4);
    border-radius: 20px;
    padding: 1.5rem;
    border: 2px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content::before {
    left: 100%;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.timeline-date {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: var(--star-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--cosmic-white);
    font-weight: 700;
}

.timeline-content p {
    color: var(--star-silver);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.timeline-features {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-tag {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-cyan);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(6, 182, 212, 0.3);
    transition: var(--transition-smooth);
}

.feature-tag:hover {
    background: rgba(6, 182, 212, 0.3);
    transform: translateY(-1px);
}

@keyframes pulse-gold {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
    }
}

@keyframes pulse-achieved {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(34, 197, 94, 0.8);
    }
}

@keyframes pulse-cyan {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
    }
}

/* Universe Section */
.universe {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(45, 27, 105, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.universe-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.universe-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: brightness(0.5) contrast(1.2);
}

.universe .container {
    position: relative;
    z-index: 1;
}

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

.universe-features {
    margin-top: 2rem;
}

.universe-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.universe-feature i {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-top: 0.25rem;
}

.universe-feature h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--cosmic-white);
}

.universe-feature p {
    color: var(--star-silver);
}

.galaxy-map {
    position: relative;
    width: 100%;
    height: 400px;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    border: 2px solid rgba(6, 182, 212, 0.3);
    overflow: hidden;
}

.star-system {
    position: absolute;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--star-gold), rgba(245, 158, 11, 0.6));
    border: 1px solid rgba(6, 182, 212, 0.35);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.35), inset 0 0 6px rgba(255,255,255,0.15);
    transform: rotate(10deg);
    animation: pulse 2s ease-in-out infinite;
}

.star-system:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.star-system:nth-child(2) { top: 40%; left: 60%; animation-delay: 0.5s; }
.star-system:nth-child(3) { top: 60%; left: 20%; animation-delay: 1s; }
.star-system:nth-child(4) { top: 30%; left: 80%; animation-delay: 1.5s; }
.star-system:nth-child(5) { top: 70%; left: 70%; animation-delay: 2s; }
.star-system:nth-child(6) { top: 80%; left: 40%; animation-delay: 2.5s; }

.star-system.active {
    background: linear-gradient(135deg, var(--accent-cyan), rgba(6, 182, 212, 0.6));
    box-shadow: 0 0 20px var(--accent-cyan), inset 0 0 8px rgba(255,255,255,0.2);
}

/* Visual style for square floating particles */
.floating-particle {
    background: var(--star-gold);
    border: 1px solid rgba(229, 231, 235, 0.35);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.35);
}

.nebula-particle {
    background: linear-gradient(135deg, rgba(236,72,153,0.7), rgba(6,182,212,0.35));
}

/* Community Section */
.community {
    padding: var(--section-padding);
    background: linear-gradient(180deg, rgba(45, 27, 105, 0.5) 0%, rgba(15, 15, 35, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1506443432602-ac2fcd6f54e0?auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    filter: brightness(0.3) saturate(1.2);
    pointer-events: none;
}

.community .container {
    position: relative;
    z-index: 1;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--star-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--star-silver);
    font-size: 1.1rem;
}

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

.community-text h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--cosmic-white);
}

.community-text p {
    color: var(--star-silver);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.alliance-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.alliance-card {
    background: rgba(45, 27, 105, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-smooth);
}

.alliance-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-cyan);
}

.alliance-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--stellar-blue));
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 2px solid rgba(6, 182, 212, 0.4);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.alliance-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.alliance-card h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--cosmic-white);
}

.alliance-card p {
    color: var(--star-silver);
    font-size: 0.9rem;
}

/* Download Section */
.download {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(45, 27, 105, 0.6) 100%);
}

.download-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 200px;
    justify-content: center;
}

/* Removed old platform card styles - replaced with simple download buttons */

.download-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--star-silver);
    font-size: 0.9rem;
}

.platform-card .btn {
    margin-top: auto;
    width: 100%;
    max-width: 200px;
    justify-content: center;
}

/* Web Shop Section */
.shop {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.85) 0%, rgba(45, 27, 105, 0.55) 100%);
    position: relative;
    overflow: hidden;
}

.shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.shop-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.shop-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.crystal-container {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.crystal-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    animation: orbit-rotate 8s linear infinite;
}

.orbit-ring-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-color: rgba(236, 72, 153, 0.3);
    animation: orbit-rotate-reverse 6s linear infinite;
}

.crystal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(6, 182, 212, 0.8));
    animation: crystal-float 4s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.crystal-glow {
    position: absolute;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, rgba(236, 72, 153, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    animation: crystal-pulse 3s ease-in-out infinite alternate;
    z-index: 1;
}

.crystal-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--star-gold);
    border-radius: 50%;
    animation: particle-float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.particle:nth-child(4) {
    top: 40%;
    right: 25%;
    animation-delay: 4.5s;
}

.currency-info {
    text-align: center;
    margin-top: 1rem;
}

.currency-label {
    display: block;
    font-size: 0.9rem;
    color: var(--star-silver);
    margin-bottom: 0.25rem;
}

.currency-value {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--star-gold);
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.shop-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.shop-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.currency-section,
.commanders-section {
    background: rgba(45, 27, 105, 0.3);
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.currency-section::before,
.commanders-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: var(--transition-smooth);
}

.currency-section:hover::before,
.commanders-section:hover::before {
    left: 100%;
}

.currency-section:hover,
.commanders-section:hover {
    transform: translateY(-3px);
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.2);
}

.currency-section h3,
.commanders-section h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--cosmic-white);
    font-weight: 700;
}

.currency-section p,
.commanders-section p {
    color: var(--star-silver);
    font-size: 0.8rem;
    line-height: 1.4;
}

.shop-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.shop-category {
    background: rgba(45, 27, 105, 0.4);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    border: 2px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.shop-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: var(--transition-smooth);
}

.shop-category:hover::before {
    left: 100%;
}

.shop-category:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.category-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--nebula-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    transition: var(--transition-smooth);
}

.shop-category:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.shop-category h3 {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--cosmic-white);
}

.shop-category p {
    color: var(--star-silver);
    font-size: 0.75rem;
    line-height: 1.3;
}

.category-price {
    font-size: 0.8rem;
    color: var(--star-gold);
    font-weight: 600;
    background: rgba(245, 158, 11, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

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

.shop-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--star-gold), var(--accent-cyan));
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: var(--transition-smooth);
}

.shop-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-smooth);
}

.shop-btn:hover::before {
    left: 100%;
}

.shop-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--star-gold), var(--accent-cyan));
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
    animation: btn-glow-pulse 2s ease-in-out infinite;
}

.shop-btn:hover .btn-glow {
    opacity: 0.7;
}

.shop-benefits {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--star-silver);
    font-size: 0.8rem;
}

.benefit i {
    color: var(--accent-cyan);
    font-size: 1rem;
}

@keyframes orbit-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes orbit-rotate-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes crystal-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    50% { 
        transform: translateY(-15px) rotate(3deg) scale(1.05); 
    }
}

@keyframes crystal-pulse {
    0% { 
        opacity: 0.3;
        transform: scale(1);
    }
    100% { 
        opacity: 0.7;
        transform: scale(1.15);
    }
}

@keyframes particle-float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

@keyframes btn-glow-pulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
    }
}

/* Account Section - Dedicated Page */
.account {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.6) 0%, rgba(15, 15, 35, 0.85) 100%);
}

.account-page {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.account-header {
    margin-bottom: 3rem;
}

.account-placeholder {
    background: rgba(45, 27, 105, 0.4);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 2px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.account-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.placeholder-content {
    position: relative;
    z-index: 1;
}

.placeholder-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--star-gold), var(--accent-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.placeholder-content h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--cosmic-white);
}

.placeholder-content p {
    color: var(--star-silver);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-list .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--star-silver);
    font-size: 0.95rem;
}

.feature-list .feature-item i {
    color: var(--accent-cyan);
    font-size: 1rem;
}

.coming-soon {
    margin-top: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--nebula-purple));
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Removed old download-content styles - replaced with new unique designs */

/* Footer */
.footer {
    background: var(--dark-space);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(79, 29, 149, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--star-gold);
}

.footer-logo .logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.6));
}

.footer-logo i {
    font-size: 1.8rem;
    color: var(--accent-cyan);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--star-silver);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(45, 27, 105, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--star-silver);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--accent-cyan);
    color: var(--dark-space);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(79, 29, 149, 0.3);
    color: var(--star-silver);
}

/* Animations */
@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

@keyframes battle-glow {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 15, 35, 0.95);
        width: 100%;
        text-align: center;
        transition: var(--transition-smooth);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* About section responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text .section-title {
        text-align: center;
    }

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

    .about-feature-item {
        justify-content: center;
    }

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

    /* Gallery responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.gallery-large {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }

    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(15, 15, 35, 0.9) 0%, transparent 100%);
    }

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

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

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

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .download-btn {
        min-width: 250px;
        padding: 1rem 2rem;
    }

    .download-features {
        gap: 2rem;
    }

    /* Shop responsive styles */
    .shop-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .shop-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .shop-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .crystal-container {
        width: 180px;
        height: 180px;
    }

    .shop-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .shop-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .footer-social {
        justify-content: center;
    }

    .community-stats {
        gap: 2rem;
    }

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

    /* Roadmap responsive styles */
    .roadmap-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .roadmap-timeline::before {
        display: none;
    }

    .timeline-item {
        max-width: none;
        min-width: auto;
    }

    .timeline-marker {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 0.5rem;
        --section-padding: 2rem 0;
    }

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

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

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

    .download-btn {
        min-width: 150px;
        padding: 0.8rem 1rem;
    }

    .download-icon {
        font-size: 1.5rem;
    }

    .download-store {
        font-size: 1rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-purple: #000080;
        --cosmic-blue: #0000FF;
        --star-gold: #FFD700;
        --cosmic-white: #FFFFFF;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.download-btn:focus {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* Skip link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent-cyan);
    color: var(--dark-space);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}
