/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #666666;
    --accent-color: #00ff88;
    --dark-bg: #000000;
    --dark-secondary: #111111;
    --dark-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --text-muted: #555555;
    --border-color: #333333;
    --gradient-primary: linear-gradient(90deg, #ffffff 0%, #666666 100%);
    --neon-glow: #00ff88;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.4;
    overflow: hidden;
    font-weight: 400;
    height: 100vh;
}

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Coming Soon Container */
.coming-soon-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 255, 136, 0.02) 0%, transparent 50%);
    overflow: hidden;
}

.coming-soon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 136, 0.02) 2px,
            rgba(0, 255, 136, 0.02) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 136, 0.01) 2px,
            rgba(0, 255, 136, 0.01) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s ease;
    position: relative;
    z-index: 3;
    height: 100vh;
    box-sizing: border-box;
}

/* Brand */
.brand {
    margin-bottom: 1rem;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(0, 255, 136, 0.2),
        0 0 60px rgba(0, 255, 136, 0.1);
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
    animation: logo-glow 3s ease-in-out infinite alternate;
}

.logo-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

@keyframes logo-glow {
    0% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.3),
            0 0 40px rgba(0, 255, 136, 0.2),
            0 0 60px rgba(0, 255, 136, 0.1);
    }
    100% {
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 0.4),
            0 0 60px rgba(0, 255, 136, 0.3),
            0 0 90px rgba(0, 255, 136, 0.2);
    }
}

/* Status */
.status {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.status-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: pulse-line 2s ease-in-out infinite;
}

.status-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--accent-color);
    transition: opacity 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

@keyframes pulse-line {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.7);
    }
}

/* Progress Section */
.progress-section {
    width: 100%;
    max-width: 500px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-percentage {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.progress-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 136, 0.8) 0%,
        rgba(0, 255, 136, 1) 50%,
        rgba(0, 255, 136, 0.8) 100%
    );
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 6px;
    box-shadow: 
        0 0 10px rgba(0, 255, 136, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: progress-shine 2s ease-in-out infinite;
}

@keyframes progress-shine {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.stat {
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}

.stat-label {
    color: var(--text-secondary);
}

.stat-value {
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

/* Main Content */
.main-content {
    margin-bottom: 2rem;
    max-width: 600px;
}

.title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    text-transform: lowercase;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.description {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

/* Call to Action */
.cta-section {
    margin-bottom: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    border: none;
    cursor: pointer;
    text-transform: lowercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--dark-bg);
    border: 2px solid var(--accent-color);
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 255, 136, 0.2),
        0 0 30px rgba(0, 255, 136, 0.4);
}

.notify-text {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

/* Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.element {
    position: absolute;
    border: 1px solid rgba(0, 255, 136, 0.2);
    opacity: 0.6;
    transition: transform 0.1s ease;
}

.element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 255, 136, 0.05) 0%,
        transparent 70%
    );
    animation: float 20s infinite linear;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    border-radius: 0;
    transform: rotate(45deg);
    background: linear-gradient(
        45deg,
        rgba(0, 255, 136, 0.03) 0%,
        transparent 50%
    );
    animation: float 25s infinite linear reverse;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.08);
}

.element-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 255, 136, 0.04) 0%,
        transparent 60%
    );
    animation: float 15s infinite linear;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.06);
}

/* Code Snippets */
.code-snippets {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.code-snippet {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: rgba(0, 255, 136, 0.4);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(5px);
    animation: float-code 8s ease-in-out infinite;
    transition: transform 0.1s ease;
}

.snippet-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.snippet-2 {
    top: 70%;
    left: 5%;
    animation-delay: 2s;
}

.snippet-3 {
    top: 40%;
    right: 20%;
    animation-delay: 4s;
}

.snippet-4 {
    bottom: 15%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes float-code {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 3rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .progress-section {
        padding: 1.5rem;
    }
    
    .progress-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .status {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .status-line {
        width: 40px;
    }
    
    .progress-section {
        padding: 1rem;
    }
    
    .code-snippet {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Loading Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.status-text {
    animation: pulse 2s infinite;
}