.page-header .main-title {
    animation: slideDown 1s ease-out forwards;
}

.page-header .subtitle {
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
}


@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header {
    text-align: center;
    padding: 2rem 1rem 0;
    overflow: hidden; 
}



.prizes-section {
    text-align: center;
    padding: 4rem 0 2rem 0; 
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    font-family: 'Russo One', sans-serif;
}

.section-padding { padding: 5rem 0.5rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-desc { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.section-title .highlight { color: var(--secondary-color); text-shadow: 0 0 25px rgba(251, 174, 64, 0.7); }


.prizes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.prize-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.prize-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.prize-card i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.prize-card h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-light);
}

.prize-card h4 {
    margin: 0;
    font-size: 2rem;
}


.legal-note-section {
    text-align: center;
    padding: 1rem;
}

.note-text {
    max-width: 850px; 
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    padding: 1rem 0;
}

.note-text strong {
    font-style: normal;
    color: var(--text-light);
}

/* =========================================
           9. TICKET SECTION
           ========================================= */
         .kit-section {  text-align: center; overflow: hidden; }

        .ticket-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            filter: drop-shadow(0 10px 30px rgba(138, 43, 226, 0.3));
        }

        .ticket {
            display: flex;
            background: linear-gradient(135deg, #2a0e3f 0%, #1e1e1e 100%);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            background-clip: padding-box;
            box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.5); 
        }

        /* Notches */
        .ticket::before, .ticket::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 40px;
            background-color: #151515;
            border-radius: 50%;
            z-index: 2;
            top: 50%;
            transform: translateY(-50%);
            border: 2px solid rgba(138, 43, 226, 0.5);
        }
        .ticket::before { left: -22px; border-left: none; }
        .ticket::after { right: -22px; border-right: none; }

        .ticket-visual {
            flex: 1.5;
            position: relative;
            overflow: hidden;
            min-height: 350px;
        }
        .ticket-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .ticket:hover .ticket-visual img { transform: scale(1.05); }

        .ticket-rip {
            width: 2px;
            background-image: linear-gradient(to bottom, #555 50%, transparent 50%);
            background-size: 2px 20px;
            position: relative;
            z-index: 1;
        }

        .ticket-info {
            flex: 2;
            padding: 3rem;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start; /* Aligns content and button to left */
        }

        .ticket-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 1rem;
            width: 100%;
        }

        .ticket-title {
            font-family: 'Russo One', sans-serif;
            font-size: 2.5rem;
            color: #fff;
            margin: 0;
            line-height: 1;
        }

        .ticket-price {
            font-family: 'Russo One', sans-serif;
            font-size: 2.5rem;
            color: var(--secondary-color);
        }

	.ticket-price del.original-price {
   		 font-size: 0.6em;
   		 color: var(--text-muted, #888);
   	 	margin-right: 8px;
    		font-weight: normal;
	}


        .ticket-benefits {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
            width: 100%;
        }
        .ticket-benefits li {
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .ticket-benefits li i { color: var(--secondary-color); }

        .admit-one {
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
            font-family: 'Russo One';
            font-size: 3rem;
            color: rgba(255,255,255,0.03);
            letter-spacing: 5px;
            pointer-events: none;
        }

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

  /* TABLET LANDSCAPE & SMALL DESKTOP (Max 1024px) */
        @media (max-width: 1024px) {
           
            /* Ticket Tablet */
            .ticket { flex-direction: column; }
            .ticket-visual { min-height: 250px; flex: auto; }
            .ticket-rip { width: 100%; height: 2px; background-image: linear-gradient(to right, #555 50%, transparent 50%); background-size: 20px 2px; }
            .ticket-info { align-items: center; text-align: center; }
            .ticket::before, .ticket::after { top: 250px; transform: translateY(-50%); }
            .ticket::before { left: -22px; } .ticket::after { right: -22px; }
        } 


@media (max-width: 992px) {
    .packages-grid {grid-template-columns: repeat(2, 1fr); }
    .prizes-grid {grid-template-columns: repeat(2, 1fr);}

}

@media (max-width: 576px) {
    .section-padding { padding: 3rem 0.1rem; }
    .packages-grid {grid-template-columns: 1fr;}
    .prizes-grid { grid-template-columns: 1fr; }
    .section-title {font-size: 2rem;}
    .package-header h3 {font-size: 1.2rem;}
    .package-image {height: 35%; }
    .note-text {font-size: 0.9rem;}
    
    .ticket-header { flex-direction: column; gap: 5px; }
    .ticket-info { padding: 2rem 1.5rem; }
    .ticket-benefits li { justify-content: center; }
     .cta-btn, .outline-btn { max-width: 350px; }
            

}