/* ========================================
   FUTURISTIC COMING SOON THEME
   Dark Cyberpunk Aesthetic with Neon Accents
   ======================================== */

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

:root {
    /* Color Palette */
    --primary-bg: #0b1220; /* deep navy */
    --secondary-bg: #111827; /* slate 900 */
    --accent-bg: #0f172a; /* slate 950 */
    --neon-cyan: #22d3ee; /* cyan 400 */
    --neon-pink: #a78bfa; /* violet 300 */
    --neon-green: #34d399; /* emerald 400 */
    --neon-purple: #6366f1; /* indigo 500 */
    --neon-orange: #f59e0b; /* amber 500 */
    --text-primary: #e5e7eb; /* gray 200 */
    --text-secondary: #9ca3af; /* gray 400 */
    --text-muted: #6b7280; /* gray 500 */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Animations */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.6s ease;
    --transition-slow: 1s ease;
}

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

/* ========================================
   ANIMATED BACKGROUND
   ======================================== */

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 50%, var(--accent-bg) 100%);
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 98%, var(--neon-green) 100%),
        linear-gradient(0deg, transparent 98%, var(--neon-cyan) 100%);
    background-size: 50px 50px, 30px 30px;
    animation: matrixMove 20s linear infinite;
    opacity: 0.1;
}

.neon-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--neon-cyan) 1px, transparent 1px),
        linear-gradient(90deg, var(--neon-cyan) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridPulse 4s ease-in-out infinite;
    opacity: 0.05;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, var(--neon-pink) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, var(--neon-purple) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, var(--neon-orange) 1px, transparent 1px);
    background-size: 200px 200px, 150px 150px, 100px 100px;
    animation: particleFloat 15s linear infinite;
    opacity: 0.3;
}

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

@keyframes gridPulse {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.15; }
}

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    transition: all var(--transition-medium);
}

.navbar-brand {
    position: relative;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-text {
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink), var(--neon-green));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.brand-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink), var(--neon-green));
    filter: blur(10px);
    opacity: 0.5;
    z-index: 1;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
}

/* Title Container */
.title-container {
    margin-bottom: 60px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    position: relative;
    text-shadow: 0 0 30px var(--neon-cyan);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.glitch {
    position: relative;
    animation: glitch 2s linear infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s linear infinite reverse;
    color: var(--neon-pink);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s linear infinite reverse;
    color: var(--neon-cyan);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(-2px, -2px); }
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 30px var(--neon-cyan), 0 0 60px var(--neon-cyan); }
    100% { text-shadow: 0 0 40px var(--neon-pink), 0 0 80px var(--neon-pink); }
}

/* Subtitle */
.title-subtitle {
    position: relative;
    display: inline-block;
}

.subtitle-text {
    font-family: var(--font-secondary);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
}

.subtitle-line {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    animation: lineExpand 2s ease-out;
}

@keyframes lineExpand {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Description */
.description-container {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
    position: relative;
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid var(--neon-cyan);
    white-space: nowrap;
    animation: typewriter 4s steps(40, end), blink 1s step-end infinite;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: var(--neon-cyan); }
    51%, 100% { border-color: transparent; }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    margin-bottom: 60px;
}

.contact-card {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 40px;
    backdrop-filter: blur(20px);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: var(--neon-cyan);
}

.contact-icon {
    font-size: 2rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.contact-info {
    text-align: left;
}

.contact-label {
    display: block;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-email {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-email:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* ========================================
   PROGRESS BAR
   ======================================== */

.progress-container {
    margin-bottom: 60px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.progress-label {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--accent-bg);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink), var(--neon-green));
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0;
    animation: progressFill 3s ease-out forwards, gradientShift 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.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 ease-in-out infinite;
}

@keyframes progressFill {
    to { width: 75%; }
}

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

.progress-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--neon-green);
    text-align: center;
    margin-top: 10px;
    text-shadow: 0 0 10px var(--neon-green);
}

/* ========================================
   SOCIAL LINKS
   ======================================== */

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--neon-cyan);
    border-radius: 50%;
    transition: all var(--transition-medium);
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    color: var(--text-primary);
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: color var(--transition-fast);
}

/* ========================================
   COUNTDOWN TIMER
   ======================================== */

.countdown-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px 30px;
    backdrop-filter: blur(20px);
    z-index: 1000;
    animation: slideInUp 1s ease-out;
}

.countdown-title {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.time-unit {
    text-align: center;
    position: relative;
}

.time-value {
    display: block;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
    line-height: 1;
    margin-bottom: 5px;
    animation: numberPulse 1s ease-in-out infinite;
}

.time-label {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .subtitle-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 30px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .countdown-container {
        bottom: 20px;
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .subtitle-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 20px 25px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-value {
        font-size: 1.2rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* ========================================
   SCROLLBAR STYLING
   ======================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
}

/* ========================================
   SELECTION STYLING
   ======================================== */

::selection {
    background: var(--neon-cyan);
    color: var(--primary-bg);
}

::-moz-selection {
    background: var(--neon-cyan);
    color: var(--primary-bg);
}