.yks-countdown-container {
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    text-align: center;
    margin-bottom: 60px;
    border: 1px solid rgba(13, 13, 18, 0.05);
    position: relative;
    overflow: hidden;
}

.yks-countdown-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #19cefb 0%, #00b7fd 100%);
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.countdown-item {
    background: #f8faff;
    padding: 32px 24px;
    border-radius: 20px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(25, 206, 251, 0.1);
}

.countdown-item:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(25, 206, 251, 0.12);
    border-color: rgba(25, 206, 251, 0.3);
}

.countdown-value {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: #0d0d12;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #7a8194;
    text-transform: uppercase;
    margin-top: 12px;
    letter-spacing: 1.5px;
}

.countdown-sep {
    font-size: 40px;
    font-weight: 300;
    color: #e5e5e5;
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

@media (max-width: 991px) {
    .countdown-item {
        min-width: 120px;
        padding: 24px 16px;
    }

    .countdown-value {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .yks-countdown-container {
        padding: 40px 20px;
    }

    .countdown-grid {
        gap: 12px;
    }

    .countdown-item {
        min-width: calc(50% - 6px);
        padding: 20px 10px;
    }

    .countdown-sep {
        display: none;
    }

    .countdown-value {
        font-size: 36px;
    }

    .countdown-label {
        font-size: 12px;
    }
}

.yks-countdown-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: #0d0d12;
    margin-bottom: 16px;
}

.yks-countdown-header p {
    font-size: 18px;
    color: #4f5665;
    max-width: 700px;
    margin: 0 auto;
}

.bg-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(25, 206, 251, 0.05) 0%, rgba(0, 183, 253, 0.05) 100%);
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -50px;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -30px;
}

/* New Styles */
.yks-exam-date-note {
    font-size: 18px;
    color: #4f5665;
    background: #f0f7ff;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(25, 206, 251, 0.2);
    margin-bottom: 30px;
}

.yks-exam-date-note strong {
    color: #0d0d12;
}

.yks-application-dates {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px dashed rgba(122, 129, 148, 0.3);
    width: fit-content;
    margin: 40px auto 0;
}

.app-date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.app-label {
    font-size: 14px;
    font-weight: 600;
    color: #7a8194;
}

.app-value {
    font-size: 18px;
    font-weight: 700;
    color: #0d0d12;
}

.yks-countdown-info-box {
    margin-top: 30px;
    background: #fff9f0;
    padding: 16px 24px;
    border-radius: 12px;
    border-left: 4px solid #ff9800;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.info-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-content i {
    font-size: 20px;
    color: #ff9800;
    margin-top: 2px;
}

.info-content p {
    font-size: 14px;
    color: #664d03;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .yks-application-dates {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .yks-exam-date-note {
        font-size: 15px;
        padding: 10px 16px;
        width: 100%;
        border-radius: 12px;
    }
}