/* Event Banner Styles */
.events-banner {
    background: #FF7575;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border-radius: 2px;
}

.events-container {
    position: relative;
    height: 80px;
    overflow: hidden;
}

.event-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.event-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.event-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.event-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 30px;
}

.event-info {
    flex: 1;
}

.event-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.event-title a {
	color: white;
}

.event-date {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-date a {
	color: white;
}

.event-date svg {
    width: 14px;
    height: 14px;
}

.event-countdown {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    margin-right: 185px;
}

.countdown-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.countdown-time {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

/* Navigation */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.nav-button.prev {
    left: 15px;
}

.nav-button.next {
    right: 15px;
}

/* Indicators */
.indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 6px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    width: 24px;
    border-radius: 4px;
    background: white;
}

/* Responsive */
@media (max-width: 768px) {
    .events-container {
        height: 90px;
    }

    .event-slide {
        padding: 15px 50px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .event-icon {
        display: none;
    }

    .event-content {
        flex-direction: column;
        align-items: center;
        gap: 0px;
        width: 100%;
    }

    .event-info {
        width: 100%;
    }

    .event-title {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .event-date {
        font-size: 12px;
        justify-content: center;
    }

    .event-countdown {
        display: block;
        margin-right: 0;
        padding: 5px 16px
    }

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

    .countdown-time {
        font-size: 14px;
    }

    .nav-button {
        width: 32px;
        height: 32px;
    }

    .nav-button.prev {
        left: 10px;
    }

    .nav-button.next {
        right: 10px;
    }

    .indicators {
        display: none;
    }
}

@media (max-width: 480px) {
    .events-container {
        height: 85px;
    }

    .event-slide {
        padding: 12px 45px;
    }

    .event-title {
        font-size: 14px;
        line-height: 1.3;
    }

    .event-date {
        font-size: 11px;
    }

    .event-countdown {
        padding: 5px 10px;
        font-size: 12px;
    }

    .countdown-time {
        font-size: 13px;
    }

    .nav-button {
        width: 28px;
        height: 28px;
    }

    .nav-button svg {
        width: 16px;
        height: 16px;
    }

    .indicators {
        bottom: 8px;
    }

    .indicator {
        width: 6px;
        height: 6px;
    }

    .indicator.active {
        width: 18px;
    }
}

@media (max-width: 360px) {
    .event-slide {
        padding: 10px 40px;
    }

    .event-title {
        font-size: 13px;
    }

    .nav-button {
        width: 26px;
        height: 26px;
    }
}

/* Index Gap - $Vinny - 15/10/2025 - 01:35:32 */
#main-index{padding:15px 0 18px !important }