.tickets-info-main {
    background-color: #fff;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sub-nav {
    background-color: #fff;
    border-bottom: 2px solid #e0e0e0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 0;
}

.tab-btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.tab-btn:hover {
    color: #e31837;
}

.tab-btn.active {
    color: #e31837;
    border-bottom-color: #e31837;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.intro-section {
    padding: 60px 0;
    background-color: #fff;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}

.pricing-link {
    display: inline-block;
    color: #e31837;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #e31837;
    padding-bottom: 5px;
}

.pricing-link:hover {
    color: #c41530;
    border-bottom-color: #c41530;
}

.ticket-options {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.ticket-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 60px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ticket-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.ticket-card.reverse .ticket-content {
    order: 1;
}

.ticket-card.reverse .ticket-image {
    order: 2;
}

.ticket-image {
    overflow: hidden;
}

.ticket-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ticket-card:hover .ticket-image img {
    transform: scale(1.05);
}

.ticket-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ticket-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.accessibility-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.buy-btn {
    display: inline-block;
    background-color: #e31837;
    color: #fff;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.buy-btn:hover {
    background-color: #c41530;
}

.ticket-card-special {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    margin-bottom: 40px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 3px solid #e0e0e0;
}

.ticket-image-special {
    overflow: hidden;
}

.ticket-image-special img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ticket-content-special {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ticket-content-special h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ticket-content-special p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.special-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    color: #e31837;
    padding: 15px 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #e31837;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.details-btn:hover {
    background-color: #e31837;
    color: #fff;
}

.pricing-table {
    padding: 80px 0;
    background-color: #fff;
}

.pricing-table h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-note {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

.table-responsive {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.price-table thead {
    background-color: #2c3e7a;
    color: #fff;
}

.price-table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
    vertical-align: middle;
}

.price-table th:first-child {
    padding-left: 20px;
}

.price-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
    vertical-align: middle;
}

.price-table td:first-child {
    padding-left: 20px;
    font-weight: 600;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.85rem;
    margin-right: 8px;
}

.new-price {
    color: #e31837;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-table tbody tr:nth-child(even) {
    background-color: #e8f1f5;
}

.price-table tbody tr:hover {
    background-color: #d4e7f0;
}

.table-buy-btn {
    display: inline-block;
    background-color: #e31837;
    color: #fff;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.table-buy-btn:hover {
    background-color: #c41530;
}

.pricing-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.terms-link {
    color: #e31837;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #e31837;
}

.terms-link:hover {
    color: #c41530;
    border-bottom-color: #c41530;
}

.hours-section {
    padding: 60px 0;
    background-color: #fff;
}

.hours-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.hours-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.hours-category {
    margin-bottom: 50px;
}

.hours-category h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e7a;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #e31837;
}

.hours-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-name {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}

.hours-name small {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
    margin-top: 5px;
}

.hours-time {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.closure-link {
    color: #2c3e7a;
    text-decoration: underline;
    font-size: 0.9rem;
}

.closure-link:hover {
    color: #e31837;
}

.booking-info {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.discounts-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.discounts-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.discounts-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.discount-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.discount-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discount-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.discount-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e7a;
    margin-bottom: 15px;
}

.discount-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e31837;
    margin-bottom: 15px;
}

.discount-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.discount-card ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.discount-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.discount-card ul li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #e31837;
    font-weight: 700;
}

.terms-link-small {
    display: inline-block;
    font-size: 0.85rem;
    color: #2c3e7a;
    text-decoration: underline;
    margin-top: 10px;
}

.terms-link-small:hover {
    color: #e31837;
}

.terms-section {
    padding: 60px 0;
    background-color: #fff;
}

.terms-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.terms-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e7a;
    margin: 30px 0 15px;
}

.terms-content ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.terms-content ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #e0e0e0;
}

.terms-content ul li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #e31837;
    font-weight: 700;
}

.terms-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 15px 0;
}

.cta-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #e31837;
    color: #fff;
    padding: 30px 60px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button span {
    display: block;
    font-size: 1.2rem;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #c41530;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 300px;
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
    }

    .sub-nav {
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 16px;
    }

    .tab-btn {
        font-size: 0.85rem;
        padding: 12px 20px;
    }
    
    .intro-section {
        padding: 40px 0;
    }
    
    .intro-text {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .ticket-options {
        padding: 40px 0;
    }

    .ticket-card,
    .ticket-card.reverse,
    .ticket-card-special {
        grid-template-columns: 1fr;
    }

    .ticket-card.reverse .ticket-content,
    .ticket-card.reverse .ticket-image {
        order: initial;
    }

    .ticket-content,
    .ticket-content-special {
        padding: 30px 20px;
    }
    
    .ticket-content h2 {
        font-size: 1.7rem;
    }

    .special-buttons {
        flex-direction: column;
    }
    
    .buy-btn,
    .details-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .pricing-table {
        padding: 60px 0;
    }
    
    .pricing-table h2 {
        font-size: 2rem;
    }

    .price-table {
        font-size: 0.85rem;
    }

    .price-table th,
    .price-table td {
        padding: 12px 8px;
    }
    
    .hours-section {
        padding: 40px 0;
    }

    .hours-section h2 {
        font-size: 2rem;
    }

    .hours-category h3 {
        font-size: 1.4rem;
    }

    .hours-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hours-intro {
        font-size: 1rem;
    }
    
    .discounts-section {
        padding: 40px 0;
    }

    .discounts-section h2 {
        font-size: 2rem;
    }

    .discounts-intro {
        font-size: 1rem;
    }

    .discount-cards {
        grid-template-columns: 1fr;
    }
    
    .terms-section {
        padding: 40px 0;
    }
    
    .terms-section h2 {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-button {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
    
    .cta-button span {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .hero-overlay h1 {
        font-size: 3rem;
    }
    
    .intro-text {
        font-size: 1.15rem;
    }
    
    .ticket-content,
    .ticket-content-special {
        padding: 40px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 250px;
    }
    
    .hero-overlay h1 {
        font-size: 1.6rem;
        padding: 0 16px;
    }

    .sub-nav {
        padding: 0 12px;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .intro-section {
        padding: 30px 0;
    }
    
    .intro-text {
        font-size: 1rem;
        padding: 0 16px;
    }
    
    .pricing-link {
        font-size: 1rem;
    }
    
    .ticket-options {
        padding: 30px 0;
    }

    .ticket-card {
        margin-bottom: 40px;
    }

    .ticket-content,
    .ticket-content-special {
        padding: 25px 16px;
    }
    
    .ticket-content h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .ticket-content p {
        font-size: 0.95rem;
    }
    
    .ticket-content-special h2 {
        font-size: 1.4rem;
    }
    
    .buy-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .details-btn {
        padding: 14px 20px;
        font-size: 0.85rem;
    }
    
    .pricing-table {
        padding: 40px 0;
    }
    
    .pricing-table h2 {
        font-size: 1.6rem;
        padding: 0 16px;
    }
    
    .pricing-note {
        font-size: 0.95rem;
        padding: 0 16px;
    }

    .price-table {
        font-size: 0.8rem;
    }

    .price-table th,
    .price-table td {
        padding: 10px 6px;
    }
    
    .old-price {
        font-size: 0.8rem;
    }
    
    .new-price {
        font-size: 1rem;
    }
    
    .table-buy-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hours-section {
        padding: 30px 0;
    }

    .hours-section h2 {
        font-size: 1.6rem;
        padding: 0 16px;
    }
    
    .hours-intro {
        font-size: 0.95rem;
        padding: 0 16px;
    }

    .hours-category h3 {
        font-size: 1.2rem;
    }
    
    .hours-name {
        font-size: 0.95rem;
    }
    
    .hours-time {
        font-size: 0.95rem;
    }
    
    .discounts-section {
        padding: 30px 0;
    }

    .discounts-section h2 {
        font-size: 1.6rem;
        padding: 0 16px;
    }

    .discounts-intro {
        font-size: 0.95rem;
        padding: 0 16px;
    }

    .discount-cards {
        gap: 20px;
        padding: 0 16px;
    }
    
    .discount-card {
        padding: 25px 20px;
    }
    
    .discount-card h3 {
        font-size: 1.3rem;
    }
    
    .discount-amount {
        font-size: 1.2rem;
    }
    
    .discount-card p,
    .discount-card ul li {
        font-size: 0.9rem;
    }
    
    .terms-section {
        padding: 30px 0;
    }
    
    .terms-section h2 {
        font-size: 1.6rem;
        padding: 0 16px;
    }
    
    .terms-intro {
        font-size: 1rem;
        padding: 0 16px;
    }
    
    .terms-content {
        padding: 0 16px;
    }
    
    .terms-content h3 {
        font-size: 1.3rem;
    }
    
    .terms-content ul li,
    .terms-content p {
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 30px 16px;
    }
    
    .cta-button {
        padding: 18px 30px;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .cta-button span {
        font-size: 0.95rem;
        margin-top: 8px;
    }
}
