/* Base Styles */
:root {
    --primary-color: #4a5af8;
    --primary-dark: #3a46c9;
    --secondary-color: #ff7d3b;
    --dark-color: #1a1a2e;
    --light-color: #f5f5f7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: white;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2d2d5f 100%);
}

/* Coming Soon Styles */
.coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 20px;
}

.logo img {
    height: auto;
    width: 300px;
    margin-bottom: 30px;
    animation: pulse 2s infinite alternate;
}

h1 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 5rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
}

.mixwest {
    font-weight: 200; /* Thin weight for MIXWEST */
}

.ai {
    font-weight: 800; /* Bold weight for AI */
    animation: colorCycle 8s infinite; /* Cycle through colors */
}

@keyframes colorCycle {
    0%, 100% { color: #4a5af8; } /* Blue */
    20% { color: #e4413c; } /* Red */
    40% { color: #2a6c9e; } /* Darker blue */
    60% { color: #f7b92a; } /* Yellow */
    80% { color: #77ac44; } /* Green */
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.coming-soon-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    padding: 10px 30px;
    border: 3px solid var(--secondary-color);
    animation: fadeInUp 1s ease-out 0.6s, glow 2s infinite alternate;
    animation-fill-mode: both;
    border-radius: 10px;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--secondary-color);
    }
    100% {
        box-shadow: 0 0 20px var(--secondary-color), 0 0 40px rgba(255, 125, 59, 0.3);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .coming-soon-text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 150px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon-text {
        font-size: 1.5rem;
        padding: 8px 20px;
    }
}
