/* COMING SOON WIDGET - HIGH-END DARK DESIGN */

.ez-cs-wrapper {
    position: relative;
    padding: 100px 20px;
    background-color: #0c1c1a; /* Darker, richer teal */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 100vh;
    font-family: inherit;
    color: #e0e6e6;
    
    /* Variables for mouse tracking glow */
    --mouse-x: 50%;
    --mouse-y: 50%;
}

/* Mouse follow glow */
.ez-cs-wrapper::before {
    content: '';
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    pointer-events: none;
    background: radial-gradient(circle 800px at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.05) 0%, rgba(25, 200, 180, 0.02) 40%, transparent 80%);
    z-index: 1;
    transition: opacity 0.5s;
    opacity: 0.8;
}

.ez-cs-wrapper:hover::before {
    opacity: 1;
}

/* Background elements (concentric circles) */
.ez-cs-bg-elements {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.ez-cs-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.03); 
    transform: translate(-50%, -50%);
}

.ez-cs-circle-1 {
    top: 50%; left: 50%;
    width: 40vw; height: 40vw;
    min-width: 400px; min-height: 400px;
}

.ez-cs-circle-2 {
    top: 50%; left: 50%;
    width: 65vw; height: 65vw;
    min-width: 650px; min-height: 650px;
    border-color: rgba(255, 255, 255, 0.02);
}

.ez-cs-circle-3 {
    top: 50%; left: 50%;
    width: 90vw; height: 90vw;
    min-width: 900px; min-height: 900px;
    border-color: rgba(255, 255, 255, 0.015);
}

.ez-cs-circle-4 {
    top: 20%; left: 80%;
    width: 40vw; height: 40vw;
    border: 1px dashed rgba(255, 255, 255, 0.02);
}

.ez-cs-circle-5 {
    top: 80%; left: 10%;
    width: 50vw; height: 50vw;
    border: 1px dotted rgba(255, 255, 255, 0.02);
}

/* Container */
.ez-cs-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge */
.ez-cs-badge {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #9aa8a7;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ez-cs-badge-dot {
    width: 6px;
    height: 6px;
    background-color: #7b8584;
    border-radius: 50%;
    display: inline-block;
}

/* Headings */
.ez-cs-heading-group {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ez-cs-h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    color: #f4f6f6;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1;
}

.ez-cs-h2 {
    font-family: inherit;
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.ez-cs-h3 {
    font-family: "Playfair Display", Georgia, serif;
    color: #d1a556; /* Gold */
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-top: 10px;
}

/* Description */
.ez-cs-desc {
    color: #8a9695;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin: 0 auto 50px auto;
    max-width: 580px;
}

/* Countdown */
.ez-cs-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.ez-cs-cd-box {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    width: 90px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.ez-cs-cd-val {
    color: #ffffff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 5px;
}

.ez-cs-cd-label {
    color: #7b8584;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ez-cs-cd-sep {
    color: #4a5756;
    font-size: 24px;
    font-weight: 300;
    margin-top: -15px;
}

@media (max-width: 500px) {
    .ez-cs-countdown {
        gap: 8px;
    }
    .ez-cs-cd-box {
        width: 70px;
        height: 80px;
        border-radius: 12px;
    }
    .ez-cs-cd-val {
        font-size: 24px;
    }
    .ez-cs-cd-label {
        font-size: 9px;
    }
}

/* Form Area */
.ez-cs-form-wrap {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

.ez-cs-form-group {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 5px;
    width: 100%;
    transition: border-color 0.3s;
}

.ez-cs-form-group:focus-within {
    border-color: rgba(255, 255, 255, 0.2);
}

.ez-cs-input {
    flex: 1;
    height: 44px;
    padding: 0 20px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    outline: none;
}

.ez-cs-input::placeholder {
    color: #7b8584;
}

.ez-cs-btn {
    height: 44px;
    padding: 0 28px;
    border: none;
    background: #d1a556;
    color: #0b1a19;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ez-cs-btn:hover {
    background: #e3bc72;
    transform: translateY(-1px);
}

.ez-cs-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.ez-cs-message {
    margin-top: 15px;
    font-size: 13px;
    text-align: center;
}

.ez-cs-message.success {
    color: #4caf50;
}

.ez-cs-message.error {
    color: #f44336;
}

/* Notice */
.ez-cs-notice {
    margin-top: 25px;
    color: #5d6867;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ez-cs-notice span {
    font-weight: 600;
    color: #7b8584;
}

/* Footer elements */
.ez-cs-footer {
    position: absolute;
    bottom: 30px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    color: #5d6867;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.ez-cs-footer-center {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    color: #7b8584;
    font-size: 14px;
    text-transform: none;
}

@media (max-width: 768px) {
    .ez-cs-footer {
        flex-direction: column;
        gap: 10px;
        bottom: 20px;
        left: 20px;
        right: 20px;
        text-align: center;
    }
}
