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

body {
    font-family: 'Exo 2', sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Animated Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
}

.stars::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, white, transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 160px 30px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: stars 20s linear infinite;
    opacity: 0.7;
}

@keyframes stars {
    from { transform: translateY(0px); }
    to { transform: translateY(-100px); }
}

.nebula {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(0, 255, 100, 0.1) 0%, transparent 50%);
    animation: nebula 30s ease-in-out infinite;
}

@keyframes nebula {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

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

.nav-logo h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00ffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.neon-text {
    display: block;
    color: #00ffff;
    text-shadow: 
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 40px #00ffff;
    animation: neonPulse 2s ease-in-out infinite alternate;
}

.neon-text-pink {
    display: block;
    color: #ff00ff;
    text-shadow: 
        0 0 5px #ff00ff,
        0 0 10px #ff00ff,
        0 0 20px #ff00ff,
        0 0 40px #ff00ff;
    animation: neonPulsePink 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from { text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 20px #00ffff; }
    to { text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff; }
}

@keyframes neonPulsePink {
    from { text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff; }
    to { text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #00ffff, #0088ff);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
    background: linear-gradient(45deg, #00ffff, #00aaff);
}

.btn-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
}

.btn-secondary:hover {
    background: #00ffff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Game Preview */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-preview {
    position: relative;
}

.screen-border {
    padding: 20px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 30px;
    animation: borderPulse 3s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 255, 0.8); }
}

.game-screen {
    width: 300px;
    height: 500px;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0a2f 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.spaceship {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: auto;
    animation: spaceshipFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
}

@keyframes spaceshipFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.laser {
    position: absolute;
    width: 4px;
    height: 60px;
    border-radius: 2px;
    animation: laserFall 3s linear infinite;
}

.laser1 {
    left: 20%;
    background: linear-gradient(180deg, #ff0080, #ff00ff);
    animation-delay: 0s;
}

.laser2 {
    left: 50%;
    background: linear-gradient(180deg, #00ff80, #00ffff);
    animation-delay: 1s;
}

.laser3 {
    left: 80%;
    background: linear-gradient(180deg, #ff8000, #ffff00);
    animation-delay: 2s;
}

@keyframes laserFall {
    from { top: -60px; }
    to { top: 500px; }
}

.score-display {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    animation: scoreGlow 2s ease-in-out infinite;
}

@keyframes scoreGlow {
    0%, 100% { text-shadow: 0 0 20px #00ffff; }
    50% { text-shadow: 0 0 30px #00ffff, 0 0 40px #00ffff; }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0a2f 100%);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00ffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Gameplay Section */
.gameplay {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a0a2f 0%, #0a0a0f 100%);
}

.gameplay-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gameplay-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
}

.gameplay-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gameplay-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.gameplay-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 50%;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    color: #000;
    flex-shrink: 0;
}

.gameplay-item h4 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.gameplay-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Phone Mockup */
.phone-mockup {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.phone-screen {
    width: 250px;
    height: 450px;
    background: linear-gradient(180deg, #0a0a0f 0%, #2a0a3f 100%);
    border-radius: 25px;
    border: 8px solid #333;
    position: relative;
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.game-ui {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.ui-score {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #00ffff;
    text-align: center;
    text-shadow: 0 0 10px #00ffff;
}

.ui-best {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: #888;
    text-align: right;
    margin-top: 10px;
}

.animated-lasers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.ani-laser {
    position: absolute;
    width: 3px;
    height: 40px;
    border-radius: 2px;
    animation: animatedLaserFall 2s linear infinite;
}

.ani-laser:nth-child(1) {
    left: 25%;
    background: linear-gradient(180deg, #ff0080, #ff00ff);
    animation-delay: 0s;
}

.ani-laser:nth-child(2) {
    left: 50%;
    background: linear-gradient(180deg, #00ff80, #00ffff);
    animation-delay: 0.7s;
}

.ani-laser:nth-child(3) {
    left: 75%;
    background: linear-gradient(180deg, #ff8000, #ffff00);
    animation-delay: 1.4s;
}

@keyframes animatedLaserFall {
    from { top: -40px; }
    to { top: 450px; }
}

.ui-spaceship {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: auto;
    animation: uiSpaceshipFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.6));
}

@keyframes uiSpaceshipFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(45deg, #1a0a2f, #0a1a2f);
    text-align: center;
}

.download-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-content p {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 50px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #00ffff;
    border-radius: 15px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.download-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}


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

.download-text {
    text-align: left;
}

.download-text span {
    display: block;
    font-size: 0.9rem;
    color: #888;
}

.download-text strong {
    font-size: 1.2rem;
    font-family: 'Orbitron', monospace;
}

.download-info {
    color: #888;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #05050a;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #ff00ff;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

.footer-section p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00ffff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00ffff;
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gameplay-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .game-screen {
        width: 250px;
        height: 400px;
    }
    
    .phone-screen {
        width: 200px;
        height: 350px;
    }
}