/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Orbitron', monospace;
    background: #0a0a0a;
    color: #00ff41;
    overflow-x: hidden;
    position: relative;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 2px solid #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

/* Pixel logo styles */
.pixel-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 0 5px #00ff41);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.pixel-h {
    filter: drop-shadow(0 0 4px #00ff41);
}

.logo-text {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    text-shadow: 
        0 0 10px #00ff41,
        0 0 20px #00ff41,
        0 0 30px #00ff41;
    margin-bottom: 0.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.logo-subtitle {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    opacity: 0.8;
    text-transform: uppercase;
}

/* Main content */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

/* Hero section */
.hero {
    text-align: center;
    position: relative;
    margin-bottom: 4rem;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: #ff0080;
    text-shadow: 
        0 0 10px #ff0080,
        0 0 20px #ff0080;
    animation: pulse 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    color: #00ffff;
    text-shadow: 
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 30px #00ffff;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.coming-soon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffff00;
    text-shadow: 
        0 0 10px #ffff00,
        0 0 20px #ffff00;
    margin-top: 1rem;
    animation: blink 1.5s ease-in-out infinite;
}

/* Grid overlay */
.grid-overlay {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background-image: 
        linear-gradient(rgba(0, 255, 65, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
    animation: gridMove 10s linear infinite;
}

/* CTA Section */
.cta-section {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: linear-gradient(45deg, #ff0080, #00ffff);
    border: 2px solid #00ff41;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(0, 255, 65, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 5px 30px rgba(0, 255, 65, 0.7),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-text {
    display: block;
    margin-bottom: 0.2rem;
}

.cta-platform {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    border-top: 2px solid #00ff41;
    background: rgba(0, 0, 0, 0.8);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.domain {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.footer-links a {
    color: #00ff41;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    text-shadow: 0 0 10px #00ff41;
    transform: scale(1.1);
}

/* X icon styles */
.x-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.x-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.x-link:hover .x-icon {
    filter: drop-shadow(0 0 5px #00ff41);
    transform: scale(1.1);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Visual effects */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 65, 0.03) 2px,
        rgba(0, 255, 65, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1000;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    animation: noise 0.2s infinite;
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 
            0 0 10px #00ff41,
            0 0 20px #00ff41,
            0 0 30px #00ff41;
    }
    to {
        text-shadow: 
            0 0 20px #00ff41,
            0 0 30px #00ff41,
            0 0 40px #00ff41;
    }
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 10px #00ff41);
        transform: scale(1);
    }
    to {
        filter: drop-shadow(0 0 20px #00ff41) drop-shadow(0 0 30px #00ffff);
        transform: scale(1.02);
    }
}

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

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

@keyframes noise {
    0% { transform: translateX(0px); }
    10% { transform: translateX(-5px); }
    20% { transform: translateX(-10px); }
    30% { transform: translateX(5px); }
    40% { transform: translateX(-5px); }
    50% { transform: translateX(-10px); }
    60% { transform: translateX(10px); }
    70% { transform: translateX(0px); }
    80% { transform: translateX(-15px); }
    90% { transform: translateX(10px); }
    100% { transform: translateX(5px); }
}

/* Responsive design */
@media (max-width: 768px) {
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-text {
        font-size: 2rem;
        letter-spacing: 0.2em;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header {
        padding: 1rem;
    }
    
    .main {
        padding: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .coming-soon {
        font-size: 1.2rem;
    }
}