.countdown-timer {
    position: relative;
    color: #000;
    padding: 20px 30px;
    border-radius: 10px;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    margin-top: -130px;
}
.countdown-item {
    display: inline-block;
    margin: 0 8px;
}
.countdown-number {
    font-size: 48px;
    color: #0066cc; /* Koyu mavi renk */
    font-weight: bold;
}
.countdown-label {
    font-size: 20px;
    text-transform: uppercase;
    margin-left: 4px;
    color: #333;
    font-weight: 600;
}
#countdownModal .modal-content {
    position: relative;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    justify-content: center;
}
#countdownModal .modal-body {
    padding: 0;
    text-align: center;
}
#countdownModal .modal-body img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
#countdownModal .modal-header {
    border: none;
    padding: 0;
    position: absolute;
    right: 13%;
    z-index: 1052;
    background: #ffffff00;
    top: -20px;
}
#countdownModal .modal-header .close {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    opacity: 1;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin: 0;
}
#countdownModal .modal-header .close:hover {
    background: rgba(0,0,0,0.8);
    transform: rotate(90deg);
}
@media screen and (max-width:1024px) {
    .countdown-timer {
        padding: 15px 20px;
        margin-top: -115px;
    }
    .countdown-item {
        display: inline-block;
        margin: 0 7px;
    }
    .countdown-number {
        font-size: 36px;
    }
    .countdown-label {
        font-size: 15px;
    }
    #countdownModal .modal-header {
        top: -18px;
        right: -15px;
    }
    #countdownModal .modal-header .close {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}
@media screen and (max-width:768px) {
    .countdown-timer {
        padding: 15px 20px;
        margin-top: -70px;
    }
    .countdown-item {
        display: inline-block;
        margin: 0 6px;
    }
    .countdown-number {
        font-size: 18px;
    }
    .countdown-label {
        font-size: 10px;
    }
    #countdownModal .modal-header {
        top: -18px;
        right: -15px;
    }
    #countdownModal .modal-header .close {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}
@media screen and (max-height:600px) {
    #countdownModal .modal-body img {
        max-height: fit-content;
    }
}