/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: rgba(15, 17, 8, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--accent);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--gold);
}

.page-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
}

.page-hero-content {
    text-align: center;
    z-index: 10;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    color: var(--gold);
    letter-spacing: 0.1em;
}

/* About Page */
.about-content {
    padding: 4rem 2rem;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--accent);
    opacity: 0.8;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
}

.expect-section {
    padding: 6rem 2rem;
    background: rgba(45, 80, 22, 0.1);
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.expect-item {
    text-align: center;
    padding: 2rem;
    background: rgba(212, 168, 67, 0.05);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 20px;
    transition: all 0.4s;
}

.expect-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.expect-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.expect-item h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.expect-item p {
    color: var(--accent);
    opacity: 0.8;
    line-height: 1.6;
}

.boxing-day-section {
    padding: 6rem 2rem;
}

/* Tickets Page */
.tickets-section {
    padding-top: 120px;
}

.tickets-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.tickets-container h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    margin-bottom: 3rem;
}

.ticket-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ticket-card {
    background: rgba(212, 168, 67, 0.05);
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s;
}

.ticket-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 168, 67, 0.2);
}

.ticket-card.featured {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.1);
}

.ticket-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ticket-badge.vip {
    background: var(--red);
}

.ticket-badge.exclusive {
    background: var(--gold);
    color: var(--primary);
}

.ticket-card h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin: 1.5rem 0 1rem;
    text-align: center;
}

.ticket-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1.5rem;
}

.ticket-features {
    list-style: none;
    margin-bottom: 2rem;
}

.ticket-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
    color: var(--accent);
    opacity: 0.8;
    font-size: 0.9rem;
}

.ticket-features li:last-child {
    border-bottom: none;
}

.ticket-quantity {
    margin-bottom: 1.5rem;
}

.ticket-quantity label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-size: 0.875rem;
    opacity: 0.7;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: var(--gold);
    color: var(--primary);
}

.quantity-control input {
    width: 60px;
    height: 40px;
    text-align: center;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    color: var(--accent);
    font-size: 1.2rem;
    border-radius: 10px;
}

.ticket-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--red) 0%, #a31f24 100%);
    color: var(--accent);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s;
}

.ticket-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--yellow));
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.4);
}

/* Cart Summary */
.cart-summary {
    background: rgba(212, 168, 67, 0.1);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
}

.cart-summary h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

#cartItems {
    margin-bottom: 1.5rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
    color: var(--accent);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    padding-top: 1.5rem;
    border-top: 2px solid var(--gold);
    margin-bottom: 2rem;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.checkout-btn {
    flex: 1;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--red) 0%, #a31f24 100%);
    color: var(--accent);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--yellow));
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.4);
}

.checkout-btn.guest {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.checkout-btn.guest:hover {
    background: var(--gold);
    color: var(--primary);
}

/* Event Info Section */
.event-info {
    padding: 4rem 2rem;
    background: rgba(45, 80, 22, 0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.info-item {
    background: rgba(212, 168, 67, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 168, 67, 0.2);
    color: var(--accent);
}

.info-item strong {
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Auth Pages */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
}

.auth-container {
    max-width: 500px;
    width: 100%;
}

.auth-box {
    background: rgba(212, 168, 67, 0.05);
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

.auth-box h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-subtitle {
    color: var(--accent);
    opacity: 0.7;
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 10px;
    color: var(--accent);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.15);
}

.auth-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--red) 0%, #a31f24 100%);
    color: var(--accent);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s;
    margin-top: 1rem;
}

.auth-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--yellow));
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.4);
}

.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--accent);
    opacity: 0.7;
}

.auth-switch a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.auth-switch a:hover {
    color: var(--yellow);
}

/* Mobile Adjustments for Pages */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .about-wrapper {
        flex-direction: column;
    }
    
    .expect-grid {
        grid-template-columns: 1fr;
    }
    
    .ticket-options {
        grid-template-columns: 1fr;
    }
    
    .auth-container {
        padding: 0 1.5rem;
    }
    
    .auth-box {
        padding: 2rem;
    }
}

/* Checkout Page */
.checkout-section {
    padding: 6rem 2rem 4rem;
    min-height: 100vh;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 100px;
}

.checkout-container h2 {
    color: var(--gold);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.order-summary {
    background: rgba(212, 168, 67, 0.05);
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: 20px;
    padding: 2rem;
    height: fit-content;
}

.order-summary h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    padding-top: 1rem;
    border-top: 2px solid var(--gold);
    margin-top: 1rem;
}

.payment-form {
    background: rgba(212, 168, 67, 0.05);
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.payment-form h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

#payment-element {
    margin: 2rem 0;
}

#payment-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

#payment-message.success {
    background: rgba(45, 80, 22, 0.2);
    color: var(--green);
}

#payment-message.error {
    background: rgba(193, 39, 45, 0.2);
    color: var(--red);
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Page */
.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.success-container {
    max-width: 700px;
    text-align: center;
    background: rgba(212, 168, 67, 0.05);
    border: 2px solid var(--gold);
    border-radius: 30px;
    padding: 4rem 3rem;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: rgba(45, 80, 22, 0.3);
    border: 4px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--green);
    animation: successPop 0.6s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-container h1 {
    color: var(--gold);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.success-message {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.success-details {
    color: var(--accent);
    opacity: 0.7;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.success-info {
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.success-info h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    text-align: center;
}

.success-info ul {
    list-style: none;
    padding: 0;
}

.success-info ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
    color: var(--accent);
    opacity: 0.8;
}

.success-info ul li:last-child {
    border-bottom: none;
}

.success-info ul li::before {
    content: '✓ ';
    color: var(--green);
    margin-right: 0.5rem;
}

.success-actions {
    margin-top: 2rem;
}

/* Mobile Adjustments for Checkout & Success */
@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .success-container {
        padding: 3rem 2rem;
    }
    
    .success-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
}


/* User Menu in Navigation - Updated without logout button */
/* User Menu in Navigation */
.user-menu {
    display: inline-flex;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: 50px;
    transition: all 0.3s;
}

.user-info:hover {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.1);
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    border: 2px solid var(--gold);
    transition: all 0.3s;
}

/* When avatar is standalone (mobile) */
a.user-menu .user-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
}

a.user-menu .user-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.4);
}

/* Remove old logout nav button styles - not needed anymore */
.logout-nav-btn {
    display: none; /* Just in case */
}

.logout-nav-btn:hover {
    background: var(--red);
    color: var(--accent);
}

/* Customer Dashboard */
.dashboard-section {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-header h1 {
    color: var(--gold);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.dashboard-header p {
    color: var(--accent);
    opacity: 0.7;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.dashboard-card {
    background: rgba(212, 168, 67, 0.05);
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.dashboard-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.dashboard-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.ticket-card {
    background: rgba(212, 168, 67, 0.05);
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.ticket-card h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.ticket-card p {
    color: var(--accent);
    opacity: 0.8;
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.ticket-qr {
    margin-top: 1rem;
    text-align: center;
}

.ticket-qr img {
    max-width: 200px;
    border: 2px solid var(--gold);
    border-radius: 10px;
}

.no-tickets {
    text-align: center;
    padding: 3rem;
    color: var(--accent);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .user-menu {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        position: relative;
    }
}

/* Cart Page */
.cart-section {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
}

.cart-container {
    max-width: 1400px;
    margin: 0 auto;
}

.cart-container h1 {
    color: var(--gold);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 3rem;
    text-align: center;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

.cart-items-box {
    background: rgba(212, 168, 67, 0.05);
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.cart-items-box h2 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cart-item-card {
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cart-item-info p {
    color: var(--accent);
    opacity: 0.7;
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.qty-control-btn {
    width: 30px;
    height: 30px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.qty-control-btn:hover {
    background: var(--gold);
    color: var(--primary);
}

.qty-display {
    font-size: 1.2rem;
    color: var(--accent);
    min-width: 30px;
    text-align: center;
}

.cart-item-price {
    text-align: right;
}

.item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.item-unit-price {
    font-size: 0.875rem;
    color: var(--accent);
    opacity: 0.6;
}

.remove-item-btn {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--red);
    color: var(--red);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.remove-item-btn:hover {
    background: var(--red);
    color: var(--accent);
}

.order-summary-box {
    background: rgba(212, 168, 67, 0.05);
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: 20px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary-box h2 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
    color: var(--accent);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    border-top: 2px solid var(--gold);
    margin-top: 1rem;
}

.checkout-options {
    margin-top: 2rem;
}

.checkout-options h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.checkout-option-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--red) 0%, #a31f24 100%);
    border: 2px solid var(--gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.checkout-option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.4);
}

.checkout-option-btn.guest {
    background: transparent;
    border: 2px solid var(--gold);
}

.checkout-option-btn.guest:hover {
    background: rgba(212, 168, 67, 0.1);
}

.btn-icon {
    font-size: 2rem;
}

.btn-title {
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
}

.btn-subtitle {
    color: var(--accent);
    opacity: 0.7;
    font-size: 0.875rem;
    text-align: left;
}

.back-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid rgba(212, 168, 67, 0.5);
    color: var(--gold);
    border-radius: 50px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s;
}

.back-btn:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: var(--gold);
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--accent);
    opacity: 0.7;
}

.empty-cart h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 968px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .order-summary-box {
        position: relative;
        top: 0;
    }
}

/* Force hide login when user menu exists */
.nav-links:has(.user-menu) a[href="login.html"] {
    display: none !important;
}

/* Force hide login link when user is authenticated */
body.authenticated footer a[href="login.html"] {
    display: none !important;
}

body.authenticated .nav-links a[href="login.html"] {
    display: none !important;
}


/* Dashboard Header Updates */
.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 2rem;
}

.dashboard-header-content > div {
    flex: 1;
    text-align: left;
}

.dashboard-header h1 {
    color: var(--gold);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: var(--accent);
    opacity: 0.7;
}

.logout-dashboard-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--red) 0%, #a31f24 100%);
    color: var(--accent);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s;
    white-space: nowrap;
}

.logout-dashboard-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--yellow));
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.4);
}

/* Mobile adjustments for dashboard header */
@media (max-width: 768px) {
    .dashboard-header-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .dashboard-header-content > div {
        text-align: center;
    }
    
    .logout-dashboard-btn {
        width: 100%;
    }
}

/* Cart Icon in Navigation */
/* Cart Icon in Navigation */
.cart-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 1rem;
}

.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 168, 67, 0.1);
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 1.2rem;
}

.cart-icon:hover {
    background: rgba(212, 168, 67, 0.2);
    border-color: var(--gold);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--red);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: 2px solid var(--primary);
}

.cart-count.hidden {
    display: none;
}

/* Update nav-links to accommodate cart */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Mobile cart icon - floating button */
@media (max-width: 968px) {
    .cart-icon-wrapper {
        position: fixed !important;
        bottom: 20px;
        right: 20px;
        z-index: 1002;
        margin-left: 0;
    }
    
    .cart-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        background: linear-gradient(135deg, var(--gold), var(--yellow));
    }
    
    .cart-icon:hover {
        transform: scale(1.1);
    }
    
    .cart-count {
        top: -5px;
        right: -5px;
        min-width: 24px;
        height: 24px;
        font-size: 0.875rem;
    }
}

/* Contact Page */
.contact-section {
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: rgba(212, 168, 67, 0.05);
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: var(--accent);
    opacity: 0.8;
    margin: 0.3rem 0;
}

/* Contact Form */
.contact-form-section {
    margin-bottom: 4rem;
}

.contact-form-box {
    background: rgba(212, 168, 67, 0.05);
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-box h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: var(--accent);
    opacity: 0.7;
    text-align: center;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form-box textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 10px;
    color: var(--accent);
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s;
}

.contact-form-box textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.15);
}

.contact-submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--red) 0%, #a31f24 100%);
    color: var(--accent);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--yellow));
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.4);
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
}

.faq-section h2 {
    color: var(--gold);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(212, 168, 67, 0.05);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

.faq-item h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--accent);
    opacity: 0.8;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-box {
        padding: 2rem;
    }
}

/* Dashboard Actions */
.dashboard-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cart-dashboard-btn {
    position: relative;
    padding: 1rem 2rem;
    background: rgba(212, 168, 67, 0.1);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-dashboard-btn:hover {
    background: rgba(212, 168, 67, 0.2);
    transform: translateY(-2px);
}

.cart-badge {
    background: var(--red);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.logout-dashboard-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--red) 0%, #a31f24 100%);
    color: var(--accent);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s;
    white-space: nowrap;
}

.logout-dashboard-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--yellow));
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.4);
}

@media (max-width: 768px) {
    .dashboard-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cart-dashboard-btn,
    .logout-dashboard-btn {
        width: 100%;
        justify-content: center;
    }
}


/* Purchased Tickets Display on Success Page */
.purchased-tickets {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(212, 168, 67, 0.05);
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: 20px;
}

.purchased-tickets h3 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

#ticketsList {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.ticket-display {
    background: rgba(212, 168, 67, 0.1);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.ticket-display:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.3);
}

.ticket-display h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.ticket-display p {
    color: var(--accent);
    margin: 0.75rem 0;
    font-size: 1rem;
}

.ticket-display p strong {
    color: var(--gold);
}

.qr-code-display {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 168, 67, 0.3);
}

.qr-code-display img {
    max-width: 300px;
    width: 100%;
    border: 5px solid var(--gold);
    border-radius: 15px;
    padding: 1rem;
    background: white; /* White background so QR shows clearly */
    box-shadow: 0 5px 20px rgba(212, 168, 67, 0.3);
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .purchased-tickets {
        padding: 1.5rem;
    }
    
    .ticket-display {
        padding: 1.5rem;
    }
    
    .qr-code-display img {
        max-width: 250px;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions a {
        width: 100%;
        text-align: center;
    }
}


/* Screenshot Reminder Box */
.screenshot-reminder {
    background: linear-gradient(135deg, #c1272d 0%, #a31f24 100%);
    border: 3px solid #d4a843;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    color: #ffffff;
}

.screenshot-reminder h3 {
    color: #f4ca16;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.screenshot-reminder p {
    color: #ffffff;
    line-height: 1.8;
    margin: 1rem 0;
}

.screenshot-reminder ol {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.screenshot-reminder ol li {
    color: #ffffff;
    margin: 0.8rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.reminder-note {
    background: rgba(244, 202, 22, 0.2);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #f4ca16;
    margin-top: 1rem;
}

.reminder-note strong {
    color: #f4ca16;
}

/* Success Page Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.success-icon {
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Make screenshot reminder more prominent */
.screenshot-reminder {
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success actions buttons */
.success-actions {
    animation: fadeInUp 0.8s ease 1s backwards;
}

.success-actions a {
    display: inline-block;
}

.success-actions a:hover {
    transform: translateY(-3px);
}

/* Mobile responsive for success page */
@media (max-width: 768px) {
    .success-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .success-actions a {
        margin: 0 !important;
        width: 100%;
        text-align: center;
    }
    
    .screenshot-reminder ol {
        padding-left: 1.5rem;
    }

}

.hidden {
    display: none !important;
}
