.hero-slider-area {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #000;
    padding-top: 120px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-item.active {
    opacity: 1;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.slide-nav-area {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40%;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.slide-nav-area:hover {
    background: rgba(0,0,0,0.1);
}

.slide-nav-area.prev-area {
    left: 0;
}

.slide-nav-area.next-area {
    right: 0;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.1);
}

.indicator.active {
    background: white;
    border-color: rgba(255,255,255,0.5);
}

/* Event Cards */
.event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.event-card .thumbnail img {
    border-radius: 8px 8px 0 0;
    height: 250px;
    object-fit: cover;
}

/* Booking Cards */
.booking-card {
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.booking-card:hover {
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.booking-card .badge {
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.booking-card .bg-success {
    background: #28a745 !important;
}

.booking-card .bg-warning {
    background: #ffc107 !important;
    color: #000;
}

.booking-card .bg-danger {
    background: #dc3545 !important;
}

/* Ticket Items */
.ticket-item {
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.ticket-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(5px);
}

.ticket-item.ticket-soldout {
    opacity: 0.6;
}

.ticket-item .ticket-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ticket-item .ticket-price {
    font-size: 24px;
    font-weight: 700;
}

.ticket-item .ticket-availability {
    color: rgba(255,255,255,0.7);
}

/* Event Info Box */
.event-info-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.event-info-box strong {
    color: rgba(255,255,255,0.9);
}

/* Dashboard Tabs */
.nav-tabs {
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.nav-tabs .nav-link {
    color: rgba(255,255,255,0.7);
    border: none;
    padding: 12px 24px;
    margin-right: 8px;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.05);
}

.nav-tabs .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-bottom: 2px solid #ff014f;
}

/* Form Styles */
.form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
}

.form-control:focus {
    background: rgba(255,255,255,0.08);
    border-color: #ff014f;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(255,1,79,0.25);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-label {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin-bottom: 8px;
}

/* Utility Classes */
.text-muted {
    color: rgba(255,255,255,0.6) !important;
}

.bg-color-blackest {
    background-color: #1a1a1a !important;
}

.radius {
    border-radius: 8px;
}

@media (max-width: 768px) {
    .hero-slider-area {
        height: 60vh;
        min-height: 400px;
    }

    .slide-nav-area {
        width: 35%;
    }

    .slider-indicators {
        bottom: 20px;
    }

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

    .event-card .thumbnail img {
        height: 200px;
    }

    .ticket-item {
        margin-bottom: 12px;
    }

    .nav-tabs .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }
}
