.raffleClock {
    position: relative;
    margin: 60px 0px 0px;
}
.NormalClock {
    display: flex;
    justify-content: space-between;
    width: 500px;
    align-items: center;
}
.raffleClock .NormalClock {
    width: 820px;
    max-width: 100%;
}
.NormalUnitContainer {
    display: block;
    position: relative;
    width: 140px;
    height: auto;
    perspective-origin: 50% 50%;
    perspective: 300px;
    border-radius: 5px;
    background-color: #fff;
}
.raffleClock .NormalClock .NormalUnitContainer {
    height: auto;
    min-width: 150px;
    width: auto;
    text-align: center;
    background: transparent;
}
.NormallowerCard, .NormalupperCard {
    display: flex;
    position: relative;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.NormalupperCard {
    align-items: flex-end;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.raffleClock .NormalClock .NormalUnitContainer .NormalupperCard {
    width: auto;
    height: auto;
}
.NormallowerCard span, .NormalupperCard span {
    font-size: 4em;
    font-family: Roboto, monospace;
    font-weight: 300;
    color: #000;
}
.raffleClock .NormalClock .NormalUnitContainer .NormalupperCard span {
    font-size: 30px;
    font-family: Comfortaa, cursive;
    color: rgb(255, 255, 255);
    font-weight: 700;
    line-height: 1;
    text-align: center;
    letter-spacing: -0.025em;
}
.raffleClock .NormalClock .NormalUnitContainer .digitLabel {
    font-size: 16px;
    font-family: Roboto, sans-serif;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-top: 10px;
}
.NormalUnitContainer .NormalupperCard span {
    background: #dc086a;
    height: 64px;
    width: 56%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}
@media (max-width: 1600px) {
    .raffleClock {
        margin: 35px 0px 0px;
    }
    .raffleClock .NormalClock {
        width: 600px;
    }
    .raffleClock .NormalClock .NormalUnitContainer .NormalupperCard span {
        font-size: 30px;
    }
    .raffleClock .NormalClock .NormalUnitContainer .digitLabel {
        font-size: 13px;
    }
}
@media (max-width: 1400px) {
    .raffleClock .NormalClock {
        width: 600px;
    }
    .raffleClock .NormalClock .NormalUnitContainer .NormalupperCard span {
        font-size: 25px;
    }
}
@media (max-width: 1300px) {
    .raffleClock {
        margin: 35px 0px 0px;
    }
    .raffleClock .NormalClock {
        width: 600px;
    }
}
@media (max-width: 767px) {
    .raffleClock .NormalClock {
        width: 100%;
    }
    .raffleClock .NormalClock .NormalUnitContainer {
        width: 100px;
        min-width: auto;
    }
    .raffleClock .NormalClock .NormalUnitContainer .NormalupperCard span {
        font-size: 20px;
    }
    .raffleClock .NormalClock .NormalUnitContainer .digitLabel {
        font-size: 11px;
    }
}
@media (max-width: 600px) {
    .raffleClock {
        width: 100%;
    }
    .raffleClock .NormalClock .NormalUnitContainer .NormalupperCard span {
        font-size: 16px; /* Smaller font size */
        width: 75%; /* Reduced width */
    }
    .raffleClock .NormalClock .NormalUnitContainer .digitLabel {
        font-size: 10px;
    }
}
.raffleClockContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    flex-wrap: wrap; /* Ensure wrapping on smaller screens */
}

.participantCountBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    min-width: 150px; /* Prevent the box from becoming too small */
}

.participantCountBox:before {
    content: '';
    position: absolute;
    left: -16px;
    top: 0px;
    bottom: 0px;
    width: 1px;
    background-color: #ccc;
}

/* Styling for numbers and labels */
.participantCount .countNumber {
    font-size: 3em;
    font-weight: bold;
    color: #dc086a;
    font-family: Comfortaa, cursive;
}

.participantCount .countLabel {
    font-size: 1.2em;
    color: #555;
    font-family: Roboto, sans-serif;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Responsive CSS for different screen sizes */

/* Large screens (above 1200px) */
@media (min-width: 1201px) {
    .raffleClockContainer {
        gap: 30px;
    }
    .participantCountBox {
        width: 220px;
    }
    .participantCount .countNumber {
        font-size: 30px;
    }
    .participantCount .countLabel {
        font-size: 14px;
    }
}

/* Medium screens (992px to 1200px) */
@media (max-width: 1200px) and (min-width: 992px) {
    .raffleClockContainer {
        gap: 25px;
    }
    .participantCountBox {
        width: 220px;
    }
    .participantCount .countNumber {
        font-size: 30px;
    }
    .participantCount .countLabel {
        font-size: 14px;
    }
}

/* Tablet screens (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .raffleClockContainer {
        gap: 20px;
    }
    .participantCountBox {
        width: 200px;
    }
    .participantCountBox:before {
        display: none;
    }
    .participantCount .countNumber {
        font-size: 30px;
    }
    .participantCount .countLabel {
        font-size: 14px;
    }
}

/* Small screens (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .raffleClockContainer {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .participantCountBox {
        width: 100%;
        margin-top: 15px;
    }
    .participantCountBox:before {
        display: none;
    }
    .participantCount .countNumber {
        font-size: 30px;
    }
    .participantCount .countLabel {
        font-size: 14px;
    }
}

/* Extra small screens (below 576px) */
@media (max-width: 575px) {
    .raffleClockContainer {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .participantCountBox {
        width: 100%;
        margin-top: 10px;
    }
    .participantCountBox:before {
        display: none;
    }
     .participantCount .countNumber {
        font-size: 30px;
    }
    .participantCount .countLabel {
        font-size: 14px;
    }
}
