.hero-section {
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1500&q=80");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.event-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.event-img-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.event-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    color: #0d6efd;
}

footer .filter-white {
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

footer a:hover {
    color: #0d6efd !important;
    transition: 0.3s ease;
}

footer input::placeholder {
    color: #ced4da !important;
    font-size: 0.8rem;
}

.navbar {
    transition: all 0.3s ease;
}

.nav-link {
    font-size: 0.95rem;
    color: #4a4a4a !important;
}

.nav-link:hover {
    color: #0d6efd !important;
}

.dropdown-item {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.checkout-container {
    max-width: 1100px;
}

.checkout-img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
}

.step-number {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    margin-right: 10px;
}

.otp-input {
    width: 45px;
    height: 55px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.otp-input:focus {
    border-color: var(--primary-blue);
    box-shadow: none;
    outline: none;
}

.payment-section.locked {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(1);
}

.card {
    border: none;
    border-radius: 12px;
}

.btn-verify {
    transition: all 0.3s;
}

/* Ticket Styes */
.page-wrapper {
    width: 380px;
}

.download-btn {
    width: 100%;
    padding: 12px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
}

.ticket {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ticket-header {
    background: #0b3c5d;
    color: #fff;
    text-align: center;
    padding: 25px 15px;
}

.ticket-header h1 {
    margin: 5px 0;
    font-size: 22px;
}

.qr-section {
    background: #0b3c5d;
    text-align: center;
    padding-bottom: 20px;
}

.qr-box {
    background: #fff;
    display: inline-block;
    padding: 8px;
    border-radius: 8px;
}

#qrcode {
    width: 140px;
}

.ticket-body {
    padding: 20px;
    background: #f8b400;
}

.ticket-body h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 5px;
}

.ticket-body p {
    text-align: center;
    font-size: 13px;
    margin-bottom: 20px;
}

.details {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    font-size: 13px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.detail-row span {
    font-weight: 600;
}