* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Electrolize", sans-serif;
    background: linear-gradient(135deg, #000000 0%, #222222 100%);
    color: #1DCD9F;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Background Code Animation */
.code-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.1;
    z-index: 1;
}

.code-line {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: #1DCD9F;
    animation: float 20s infinite linear;
}

.code-line:nth-child(1) { top: 10%; left: -20%; animation-delay: 0s; }
.code-line:nth-child(2) { top: 25%; left: -25%; animation-delay: -3s; }
.code-line:nth-child(3) { top: 40%; left: -15%; animation-delay: -6s; }
.code-line:nth-child(4) { top: 55%; left: -30%; animation-delay: -9s; }
.code-line:nth-child(5) { top: 70%; left: -20%; animation-delay: -12s; }
.code-line:nth-child(6) { top: 85%; left: -25%; animation-delay: -15s; }

@keyframes float {
    0% { transform: translateX(0); }
    100% { transform: translateX(120vw); }
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    color: #1DCD9F;
    text-shadow: 0 0 20px rgba(29, 205, 159, 0.3);
    margin-bottom: 0.5rem;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { text-shadow: 0 0 20px rgba(29, 205, 159, 0.3); }
    50% { text-shadow: 0 0 30px rgba(29, 205, 159, 0.6); }
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #169976;
    margin-bottom: 1rem;
}

/* Loading Animation */
.loading-container {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(34, 34, 34, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(29, 205, 159, 0.2);
}

.loading-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #1DCD9F;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(34, 34, 34, 0.8);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(29, 205, 159, 0.3);
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #169976, #1DCD9F, #169976);
    background-size: 200% 100%;
    border-radius: 6px;
    width: 73%;
    position: relative;
    animation: shimmer 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(29, 205, 159, 0.4);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: slide 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes slide {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.loading-percentage {
    font-size: 1.1rem;
    color: #1DCD9F;
    font-weight: bold;
}

/* Description */
.description {
    margin: 3rem 0;
    line-height: 1.6;
}

.description p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(29, 205, 159, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(29, 205, 159, 0.2);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    margin-top: 3rem;
}

.coming-soon h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #1DCD9F;
    margin-bottom: 1rem;
}

.coming-soon p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* GitHub Button */
.github-link {
    margin-top: 2rem;
}

.github-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #169976, #1DCD9F);
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 205, 159, 0.3);
}

.github-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 205, 159, 0.4);
    background: linear-gradient(135deg, #1DCD9F, #169976);
}

.github-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .loading-container {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .feature {
        justify-content: center;
        text-align: center;
    }
    
    .code-line {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
    }
    
    .loading-container {
        padding: 1rem;
    }
    
    .github-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
