@font-face {
    font-family: 'BrushKing';
    src: url('BrushKing.otf') format("opentype");
  }


  .hero-banner-one .hero-heading{
    font-family: "BrushKing";
  }

.timer-wrapper {
    display: flex;
    align-items: center;
}
 .countdown-container {
        display: flex;
        background: linear-gradient(to right, #ff8d28, #8a2be2);
        padding: 20px;
        color: white;
        text-align: center;
    }
    .countdown-item {
        margin: 0 10px;
    }
    .countdown-number {
        font-size: 2.5em;
        font-weight: bold;
    }
    .countdown-label {
        font-size: 0.8em;
        text-transform: uppercase;
    }
    .countdown-text {
        background-color: #8a2be2;
        color: white;
        padding: 20px 10px;
        /* border-radius: 0 10px 10px 0; */
        writing-mode: vertical-rl;
        text-orientation: mixed;
        transform: rotate(180deg);
        font-size: 0.9em;
        letter-spacing: 1px;
    }
    .countdown-separator {
        font-size: 2.5em;
        font-weight: bold;
        align-self: flex-start;
        margin-top: 0.1em;
    }
    .live-icon {
        display: flex;
        align-items: center;
        color: white;
        font-family: "Satoshi";
        font-weight: 500;
        font-size: 20px;
    }
    .live-dot {
        width: 8px;
        height: 8px;
        background-color: #ff0000;
        border-radius: 50%;
        margin-right: 5px;
        animation: pulse 1.5s infinite;
    }
    @keyframes pulse {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
        }
        70% {
            transform: scale(1);
            box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
        }
        100% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
        }
    }
    .card-img-top {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }
    .card-footer {
        background-color: #ff5722;
        color: white;
        padding: 0.25rem 1rem;
    }
    .originals-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 2px 8px;
        border-radius: 15px;
        font-size: 0.8rem;
    }
    .favorite-icon {
        position: absolute;
        top: 10px;
        right: 10px;
        color: white;
        font-size: 1.5rem;
    }
    .card-title:hover{
        text-decoration: underline;
    }

    .gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .thumbnail {
        width: 300px;
        height: 300px;
        object-fit: cover;
        cursor: pointer;
    }
    .modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.9);
        z-index: 9999;
    }
    .modal-content {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
        max-height: 80%;
        object-fit: contain;
    }
    .modal-content img {
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
    }
    .close, .nav-btn {
        color: #f1f1f1;
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
        user-select: none;
    }
    .close {
        position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
    }
    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        padding: 16px;
        background-color: rgba(0,0,0,0.5);
    }
    #prevBtn { left: 10px; }
    #nextBtn { right: 10px; }
