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

:root {
    /* Motherboard Tech Theme Palette */
    --primary-color: #4fc3f7;
    --primary-dark: #29b6f6;
    --secondary-color: #e57373;
    --accent-color: #81c784;
    --text-primary: #ffffff;
    --text-secondary: #cfd8dc;
    --text-light: #ffffff;
    --background-primary: rgba(15, 20, 30, 0.9);
    --background-secondary: rgba(10, 15, 25, 0.95);
    --background-gradient: linear-gradient(135deg, rgba(15, 20, 30, 0.9) 0%, rgba(10, 15, 25, 0.95) 100%);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    
    /* Typography */
    --font-primary: 'Roboto', 'Arial', 'Helvetica Neue', sans-serif;
    --font-mono: 'Roboto Mono', 'Consolas', 'Courier New', monospace;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #cfd8dc;
        --background-primary: rgba(15, 20, 30, 0.95);
        --background-secondary: rgba(10, 15, 25, 0.98);
        --background-gradient: linear-gradient(135deg, rgba(15, 20, 30, 0.95) 0%, rgba(10, 15, 25, 0.98) 100%);
    }
}

/* Base Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg.jpg') center/cover no-repeat;
    filter: blur(1px);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 10, 20, 0.6) 0%, rgba(5, 15, 25, 0.7) 100%);
    z-index: -1;
}

/* Container */
.container {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    overflow: hidden;
}



/* Main Content */
.main-content {
    max-width: 800px;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: var(--space-lg);
    gap: var(--space-xl);
}

/* Project Header */
.project-header {
    text-align: center;
    flex-shrink: 0;
}

.project-title {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.title-main {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.1;
    word-break: break-word;
    letter-spacing: -0.01em;
}







/* Coming Soon Section - Centered */
.coming-soon-section {
    width: 100%;
    max-width: 600px;
}

.coming-soon-content {
    background: rgba(20, 30, 45, 0.85);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-heavy);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.coming-soon-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.coming-soon-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
}

/* Progress Container */
.progress-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.progress-label {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 12px;
    background: var(--background-secondary);
    border-radius: 6px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--primary-color);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 6px;
    transition: width var(--transition-slow);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-percentage {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--primary-color);
}





/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: var(--space-sm);
    }
    
    .main-content {
        padding: var(--space-md);
        gap: var(--space-lg);
        height: 100vh;
    }
    
    .coming-soon-content {
        padding: var(--space-lg);
    }
    
    .title-main {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .coming-soon-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .coming-soon-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: var(--space-sm);
        gap: var(--space-md);
    }
    
    .coming-soon-content {
        padding: var(--space-md);
    }
    
    .title-main {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }
    
    .coming-soon-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
}

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

/* Focus styles */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Loading state */
.loading {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
} 