/* Coming Soon Page Styles */
.coming-soon-page {
    margin: 0;
    padding: 0;
    font-family: var(--cs-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);
    background: var(--cs-bg-color);
    color: var(--cs-text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.coming-soon-page * {
    color: var(--cs-text-color);
}

.cs-container {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    width: 100%;
}

.cs-logo {
    margin-bottom: 30px;
}

.cs-logo img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.cs-site-name {
    font-size: var(--cs-site-name-size, 3.5rem);
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--cs-text-color);
}

.cs-message {
    font-size: var(--cs-message-size, 1.25rem);
    line-height: 1.6;
    margin: 30px 0;
    opacity: 0.9;
    color: var(--cs-text-color);
}

.cs-login-link {
    margin-top: 40px;
}

.cs-login-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--cs-text-color);
    color: var(--cs-bg-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--cs-text-color);
}

.cs-login-button:hover {
    background: transparent;
    color: var(--cs-text-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animation: Fade In */
.cs-animate-fade {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cs-animate-fade.cs-logo {
    animation-delay: 0.2s;
}

.cs-animate-fade.cs-site-name {
    animation-delay: 0.4s;
}

.cs-animate-fade.cs-message {
    animation-delay: 0.6s;
}

.cs-animate-fade.cs-login-link {
    animation-delay: 0.8s;
}

/* Animation: Slide Up */
.cs-animate-slide {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cs-animate-slide.cs-logo {
    animation-delay: 0.2s;
}

.cs-animate-slide.cs-site-name {
    animation-delay: 0.4s;
}

.cs-animate-slide.cs-message {
    animation-delay: 0.6s;
}

.cs-animate-slide.cs-login-link {
    animation-delay: 0.8s;
}

/* Animation: Bounce */
.cs-animate-bounce {
    opacity: 0;
    animation: bounceIn 1s ease-out forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.cs-animate-bounce.cs-logo {
    animation-delay: 0.2s;
}

.cs-animate-bounce.cs-site-name {
    animation-delay: 0.4s;
}

.cs-animate-bounce.cs-message {
    animation-delay: 0.6s;
}

.cs-animate-bounce.cs-login-link {
    animation-delay: 0.8s;
}

/* Animation: Pulse */
.cs-animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.cs-animate-pulse.cs-logo {
    animation-delay: 0.2s;
}

.cs-animate-pulse.cs-site-name {
    animation-delay: 0.4s;
}

.cs-animate-pulse.cs-message {
    animation-delay: 0.6s;
}

/* Typing Effect - handled by JavaScript */
.cs-typing {
    border-right: 2px solid var(--cs-text-color);
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--cs-text-color);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cs-site-name {
        font-size: 2.5rem;
    }
    
    .cs-message {
        font-size: 1.1rem;
    }
    
    .cs-logo img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .cs-site-name {
        font-size: calc(var(--cs-site-name-size, 3.5rem) * 0.6);
    }
    
    .cs-message {
        font-size: calc(var(--cs-message-size, 1.25rem) * 0.8);
    }
}

/* Background Animations */
@keyframes bgSlide {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes bgZoom {
    0%, 100% {
        background-size: 100%;
    }
    50% {
        background-size: 120%;
    }
}

@keyframes bgRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(2deg) scale(1.05);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes bgFade {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes bgPulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.coming-soon-page.cs-bg-animation-slide {
    background-size: 120% 120%;
    animation: bgSlide 20s ease-in-out infinite;
}

.coming-soon-page.cs-bg-animation-zoom {
    animation: bgZoom 15s ease-in-out infinite;
}

.coming-soon-page.cs-bg-animation-rotate::before {
    animation: bgRotate 25s ease-in-out infinite;
}

.coming-soon-page.cs-bg-animation-fade {
    animation: bgFade 10s ease-in-out infinite;
}

.coming-soon-page.cs-bg-animation-pulse {
    animation: bgPulse 8s ease-in-out infinite;
}

