/* Modern Coming Soon - CSS Styles */

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

body.mcs-coming-soon {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
    height: 100vh;
    position: relative;
}

/* Background Styles */
.mcs-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.mcs-bg-gradient {
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    animation: gradientShift 15s ease infinite;
}

.mcs-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mcs-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg) brightness(1); }
    25% { filter: hue-rotate(10deg) brightness(1.1); }
    50% { filter: hue-rotate(-5deg) brightness(0.95); }
    75% { filter: hue-rotate(5deg) brightness(1.05); }
}

/* Container and Layout */
.mcs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%!important;
    min-height: 80vh!important;
    margin: auto!important;
    padding: 20px;  
    position: relative;
    z-index: 1;
}

.mcs-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    backdrop-filter: blur(20px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease-out;
}

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

/* Logo */
.mcs-logo {
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.2s both;
}

.mcs-logo img {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Typography */
.mcs-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out 0.4s both;
}

.mcs-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.mcs-description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.8s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Countdown Timer */
.mcs-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    animation: slideUp 1s ease-out 1s both;
}

.mcs-countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px 15px;
    min-width: 80px;
    transition: all 0.3s ease;
}

.mcs-countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mcs-countdown-number {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.mcs-countdown-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

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

/* Email Subscription */
.mcs-subscription {
    margin-bottom: 40px;
    animation: slideUp 1s ease-out 1.2s both;
}

.mcs-subscription h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.mcs-input-group {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px;
    transition: all 0.3s ease;
}

.mcs-input-group:focus-within {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.mcs-input-group input {
    flex: 1;
    background: transparent!important;
    border: none!important;
    padding: 15px 20px!important;
    color: var(--text-primary)!important;
    font-size: 1rem!important;
    outline: none!important;
}

.mcs-input-group input::placeholder {
    color: var(--text-secondary);
}

.mcs-submit-btn {
    background: var(--accent-color)!important;
    color: #333!important;
    border: none!important;
    padding: 15px 25px!important;
    border-radius: 40px!important;
    font-weight: 600!important;
    font-size: 0.95rem!important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mcs-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.mcs-submit-btn:active {
    transform: translateY(0);
}

.mcs-btn-loading {
    display: none;
}

.mcs-submit-btn.loading .mcs-btn-text {
    display: none;
}

.mcs-submit-btn.loading .mcs-btn-loading {
    display: inline;
}

.mcs-form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
}

.mcs-form-message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
    opacity: 1;
}

.mcs-form-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
    opacity: 1;
}

/* Social Media */
.mcs-social {
    animation: slideUp 1s ease-out 1.4s both;
}

.mcs-social h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.mcs-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mcs-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mcs-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Floating Elements */
.mcs-floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.mcs-floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite linear;
}

.mcs-circle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.mcs-circle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.mcs-circle-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: -14s;
}

.mcs-floating-triangle {
    position: absolute;
    width: 0;
    height: 0;
    animation: float 25s infinite linear;
}

.mcs-triangle-1 {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(255, 255, 255, 0.08);
    top: 30%;
    right: 20%;
    animation-delay: -5s;
}

.mcs-triangle-2 {
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 60px solid rgba(255, 255, 255, 0.06);
    bottom: 30%;
    right: 10%;
    animation-delay: -12s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.9;
    }
}

/* Particles */
#mcs-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mcs-content {
        padding: 40px 30px;
        margin: 10px;
        border-radius: 20px;
    }
    
    .mcs-countdown {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .mcs-countdown-item {
        min-width: 70px;
        padding: 15px 10px;
    }
    
    .mcs-input-group {
        flex-direction: column;
        max-width: 300px;
        border-radius: 16px;
        padding: 12px;
    }
    
    .mcs-input-group input {
        margin-bottom: 10px;
        text-align: center;
    }
    
    .mcs-submit-btn {
        border-radius: 12px;
        width: 100%;
    }
    
    .mcs-social-links {
        gap: 12px;
    }
    
    .mcs-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .mcs-content {
        padding: 30px 20px;
    }
    
    .mcs-countdown {
        gap: 8px;
    }
    
    .mcs-countdown-item {
        min-width: 60px;
        padding: 12px 8px;
    }
    
    .mcs-countdown-number {
        font-size: 1.5rem;
    }
    
    .mcs-countdown-label {
        font-size: 0.8rem;
    }
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pulse Animation for Important Elements */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.mcs-submit-btn:not(.loading):hover {
    animation: pulse 2s infinite;
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Focus States for Accessibility */
.mcs-input-group input:focus,
.mcs-submit-btn:focus,
.mcs-social-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .mcs-content {
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid #ffffff;
    }
    
    .mcs-countdown-item,
    .mcs-input-group,
    .mcs-social-link {
        background: rgba(255, 255, 255, 0.9);
        color: #000000;
        border: 1px solid #ffffff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .mcs-floating-elements {
        display: none;
    }
}
