body {
    color: #e3e3e3;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.payment-message {
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

/* HERO SECTION */
.events-hero-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-hero-background {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('earth.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: -1;
}

.events-hero-water-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(transparent, rgba(0,102,204,0.3));
}

.events-hero-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
}

.events-hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    animation: glow-pulse 3s ease-in-out infinite;
}

.events-hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4.5rem;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255,255,255,0.5);
    animation: title-entrance 1.5s ease-out;
}

.events-hero-subtitle {
    font-size: 1.4rem;
    color: #cccccc;
    margin-bottom: 40px;
    font-weight: 300;
}

.events-hero-quick-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.events-quick-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(0,0,0,0.7);
    border-radius: 15px;
    border: 2px solid rgba(255,107,53,0.3);
    backdrop-filter: blur(10px);
    min-width: 150px;
    transition: all 0.3s ease;
}

.events-quick-info-item:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.3);
}

.events-quick-info-icon {
    font-size: 2rem;
    color: #ff6b35;
}

.events-quick-info-label {
    font-size: 0.8rem;
    color: #ffa500;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.events-quick-info-value {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
}

.events-hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.calendar-btn, .tickets-btn {
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.faq-btn {
    background: transparent;
    color: #ffa500;
    border: 3px solid #ffa500;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.faq-btn:hover {
    background: #ffa500;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,165,0,0.4);
}

.calendar-btn {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.calendar-btn:hover {
    background: white;
    color: #000;
    transform: translateY(-3px);
}

.tickets-btn {
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    color: white;
}

.tickets-btn:hover {
    background: linear-gradient(45deg, #ffa500, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.4);
}

/* EVENT DETAILS SECTION */
.event-details-container {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 300;
}

.event-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.event-info-card {
    background: rgba(0,0,0,0.8);
    border: 2px solid rgba(255,107,53,0.3);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.event-info-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255,107,53,0.3);
}

.event-info-title {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.event-info-content {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.event-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.event-features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,107,53,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.event-features-list li:hover {
    color: #ffa500;
    transform: translateX(10px);
}

.event-features-list i {
    color: #ff6b35;
    width: 20px;
}

/* TIMELINE SECTION */
.timeline-container {
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(0,0,0,0.9));
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.timeline-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ff6b35" opacity="0.1"/></svg>');
    pointer-events: none;
}

.timeline-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.timeline-list {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline-list:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ff6b35, #ffa500, #ff6b35);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content-box {
    background: rgba(0,0,0,0.9);
    border: 3px solid rgba(255,107,53,0.3);
    border-radius: 20px;
    padding: 30px;
    width: 45%;
    position: relative;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.timeline-content-box:hover {
    border-color: #ff6b35;
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(255,107,53,0.4);
}

.timeline-time {
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.timeline-event-title {
    font-size: 1.4rem;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-event-desc {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #ff6b35;
    border: 4px solid #000;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 20px rgba(255,107,53,0.6);
}

/* IMAGE GALLERY */
.gallery-container {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 3px solid rgba(255,107,53,0.3);
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255,107,53,0.4);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    color: white;
    text-align: center;
    gap: 15px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: #ff6b35;
}

.gallery-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(255,107,53,0.3);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #ff6b35;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #ffa500;
    transform: scale(1.1);
}

.modal-caption {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255,107,53,0.1);
    border-radius: 10px;
    border: 2px solid rgba(255,107,53,0.3);
}

@media (max-width: 768px) {
    .events-hero-container {
        padding-top: 50px;
        align-items: flex-start;
    }

    .event-info-card {
        padding: 15px;
    }

    .gallery-container {
        padding: 10px
    }

    .timeline-container {
        padding: 10px 5px;
    }
    
    .modal-content {
        width: 95%;
        padding: 0 !important;
    }

    .modal-close {
        font-size: 2rem;
        right: 15px;
        top: 5px;
    }

    .modal-caption {
        font-size: 1.1rem;
    }
}

/* VIDEO SECTION */
.video-container {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    padding: 100px 20px;
}

.video-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.video-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    margin-top: 50px;
    box-shadow: 0 20px 50px rgba(255,107,53,0.3);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(255,107,53,0.5);
}

.video-iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* TICKETS SECTION */
.tickets-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #1a1a1a, #000000);
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.ticket-card {
    background: rgba(0,0,0,0.9);
    border: 3px solid rgba(255,107,53,0.3);
    border-radius: 30px;
    padding: 40px 35px;
    position: relative;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.ticket-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 25px 50px rgba(255,107,53,0.4);
}

.ticket-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.popular-badge {
    background: linear-gradient(45deg, #ffd700, #ffeb3b);
    color: #000;
}

.ticket-header {
    text-align: center;
    margin-bottom: 30px;
}

.ticket-name {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

.ticket-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: white;
    margin-bottom: 10px;
}

.ticket-period {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 30px;
}

.ticket-features {
    margin-bottom: 30px;
}

.ticket-features h4 {
    color: #ffa500;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 8px 0;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list i {
    color: #ff6b35;
    width: 18px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    color: #ffa500;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.form-input {
    padding: 15px;
    border: 2px solid rgba(255,107,53,0.3);
    border-radius: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255,107,53,0.1);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #ff6b35;
    background: transparent;
    color: #ff6b35;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #ff6b35;
    color: white;
}

.qty-input {
    width: 80px;
    text-align: center;
    padding: 10px;
    border: 2px solid rgba(255,107,53,0.3);
    border-radius: 8px;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 1.1rem;
}

.total-display {
    background: rgba(255,107,53,0.1);
    border: 2px solid rgba(255,107,53,0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.total-amount {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #ff6b35;
}

.purchase-btn {
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.purchase-btn:hover {
    background: linear-gradient(45deg, #ffa500, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.4);
}

/* Promo Code Styles */
.form-group {
    position: relative;
}

.apply-promo-btn {
    position: absolute;
    right: 5px;
    top: 32px;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-promo-btn:hover {
    background: #ffa500;
}

.promo-message {
    font-size: 0.9rem;
    margin-top: 8px;
    padding: 8px;
    border-radius: 5px;
}

.promo-success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c562;
    border: 1px solid #22c562;
}

.promo-error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.discount-info {
    font-size: 1rem;
    color: #22c562;
    font-weight: 600;
}

/* Media Consent Styles */
.consent-group {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.consent-checkbox-wrapper {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.consent-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: #ff6b35;
}

.consent-label {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

.consent-label strong {
    color: #ff6b35;
    font-size: 1.1rem;
}


/* RESPONSIVE */
@media (max-width: 1024px) {
    .event-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline-list:before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-content-box {
        width: 100%;
    }

    .timeline-marker {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .events-hero-container {
        background-attachment: scroll; /* Fixed doesn't work well on mobile */
    }
    
    .events-hero-title {
        font-size: 3rem;
    }

    .events-hero-quick-info {
        gap: 20px;
    }

    .ticket-card {
        padding: 15px;
    }

    .events-quick-info-item {
        min-width: 120px;
        padding: 15px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .tickets-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-iframe {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .consent-label {
        font-size: 0.9rem;
    }

    .consent-checkbox {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .events-hero-title {
        font-size: 2.5rem;
    }

    .events-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .calendar-btn, .tickets-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}