* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    max-height: 100vh;
    background-color: white;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    position: relative;
}

.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.gradient-text {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #4facfe 50%, #00f2fe 75%, #667eea 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientAnimation 4s ease infinite;
    text-align: center;
    letter-spacing: 0.1em;
}

@keyframes gradientAnimation {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--color);
    top: -10px;
    left: calc(var(--i) * 3.33%);
    animation: fall linear infinite;
    animation-duration: calc(3s + var(--i) * 0.2s);
    animation-delay: calc(var(--i) * -0.3s);
    opacity: 0.8;
    border-radius: 2px;
}

.confetti:nth-child(2n) {
    width: 8px;
    height: 12px;
    animation-duration: calc(4s + var(--i) * 0.15s);
}

.confetti:nth-child(3n) {
    width: 6px;
    height: 8px;
    animation-duration: calc(3.5s + var(--i) * 0.1s);
    border-radius: 50%;
}

.confetti:nth-child(4n) {
    width: 12px;
    height: 6px;
}

.confetti:nth-child(5n) {
    transform: rotate(45deg);
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0.4;
    }
}

/* Responsive Breakpoints */

/* Extra Large Devices - 1400px */
@media (max-width: 1400px) {
    .gradient-text {
        font-size: 7rem;
    }
}

/* Large Devices - 1200px */
@media (max-width: 1200px) {
    .gradient-text {
        font-size: 6rem;
    }
}

/* Medium Devices - 992px */
@media (max-width: 992px) {
    .gradient-text {
        font-size: 5rem;
        letter-spacing: 0.08em;
    }
    
    .confetti {
        width: 8px;
        height: 8px;
    }
}

/* Small Medium Devices - 768px */
@media (max-width: 768px) {
    .gradient-text {
        font-size: 4rem;
        letter-spacing: 0.05em;
    }
    
    .confetti {
        width: 7px;
        height: 7px;
    }
}

/* Small Devices - 576px */
@media (max-width: 576px) {
    .gradient-text {
        font-size: 3rem;
        letter-spacing: 0.03em;
    }
    
    .confetti {
        width: 6px;
        height: 6px;
    }
    
    .confetti:nth-child(2n) {
        width: 6px;
        height: 9px;
    }
}

/* Extra Small Devices - 400px */
@media (max-width: 400px) {
    .gradient-text {
        font-size: 2.5rem;
        letter-spacing: 0.02em;
        padding: 0 20px;
    }
    
    .confetti {
        width: 5px;
        height: 5px;
    }
    
    .confetti:nth-child(2n) {
        width: 5px;
        height: 7px;
    }
    
    .confetti:nth-child(3n) {
        width: 4px;
        height: 6px;
    }
}
