/* Variabel Warna */
:root {
    --primary: #6f42c1;
    --secondary: #d63384;
    --dark: #212529;
    --light: #f8f9fa;
    --success: #28a745;
}

/* Dasar Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fb;
    color: #333;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    backdrop-filter: blur(5px);
    background: rgba(0,0,0,0.5);
    padding: 30px;
    border-radius: 15px;
}

/* Ticket Cards */
.ticket-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ticket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.regular-card {
    border-top: 5px solid #0d6efd;
}

.vip-card {
    border-top: 5px solid #ffc107;
}

.box-regular {
	padding: 10px;
	font-size: 20px;
	background-color: #0d6efd;
	color: white;
}
.box-vip {
	padding: 10px;
	font-size: 20px;
	background-color: #ffc107;
	color: black;
}

.card-header-bg {
    background: white;
    text-align: center;
    padding: 20px;
}

/* Section Title */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Benefit List */
.benefit-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.benefit-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.vip-list li:before {
    color: #ffc107;
}

/* Buttons */
.btn-buy {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
    color: white;
    border-radius: 50px;
}

.btn-buy:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.4);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Schedule Items */
.schedule-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border-left: 4px solid var(--primary);
}

.schedule-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* Counter Styles */
.counter-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    background-color: #e9ecef;
    border: 1px solid #dee2e6;
}

.counter-value {
    min-width: 50px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 15px;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.modal-header {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    border-bottom: none;
}

.modal-footer {
    border-top: none;
}

.close {
    color: white;
    opacity: 0.8;
}

.close:hover {
    color: white;
    opacity: 1;
}

.payment-option {
    border: 2px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}
.payment-option:hover {
    border-color: #0d6efd;
}
.payment-option.active {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
}
.payment-option img {
    max-height: 50px;
    object-fit: contain;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 50px 0;
    }
    
    .hero-content {
        margin: 20px;
    }
    
    .btn-buy {
        width: 100%;
        margin-top: 10px;
    }
    
    .counter-container {
        justify-content: center;
    }
}