.tickets-section {
    position: relative;
    width: 100%;
    background-color: #0C0C0D;
    background-image: 
        linear-gradient(to bottom, #0C0C0D 0%, rgba(12, 12, 13, 0) 30%),
        url('../../../img/dq2026/background2.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 100px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.tickets-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tickets-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 24px;
}

.tickets-disclaimer {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #E0E0E0;
    text-align: center;
    max-width: 800px;
    line-height: 1.5;
    margin-bottom: 60px;
}

.tickets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.ticket-card {
    background-color: #26272B;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-header {
    padding: 40px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    height: 380px;
    box-sizing: border-box;
}

.header-standard {
    background-image: url('../../../img/dq2026/price1.png');
}

.header-vip {
    background-image: url('../../../img/dq2026/price2.png');
}

.ticket-type {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #FFFFFF;
    margin: 0 0 32px 0;
}

.vip-star {
    font-size: 20px;
    vertical-align: middle;
    margin-left: 5px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.price-row.main .price-value {
    font-size: 56px;
    font-weight: 700;
}

.price-row.secondary .price-value {
    font-size: 32px;
    font-weight: 600;
}

.price-value {
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
}

.price-period {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.ticket-buy-btn {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    color: #26272B;
    text-align: center;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 99px;
    transition: transform 0.2s, background-color 0.2s, opacity 0.2s;
    min-height: 62px;
    box-sizing: border-box;
}

.ticket-buy-btn:not(.is-disabled):hover {
    transform: scale(1.02);
    background-color: #f0f0f0;
}

.ticket-btn-label {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.ticket-btn-sub {
    font-weight: 500;
    font-size: 11px;
    line-height: 1;
    margin-top: 2px;
}

.ticket-buy-btn.is-disabled {
    background-color: rgba(255, 255, 255, 0.4);
    color: rgba(38, 39, 43, 0.6);
    cursor: default;
    pointer-events: none;
    transform: none;
}

.ticket-body {
    padding: 32px 40px 40px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.included-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #B0B0B0;
    margin-bottom: 24px;
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #E0E0E0;
    margin-bottom: 16px;
}

.check-icon {
    width: 18px;
    height: 18px;
    background-color: #00BC74;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
}

.check-icon::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.ticket-footer {
    margin-top: auto;
    text-align: center;
}

.footer-link-green {
    color: #00BC74;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-decoration: underline;
}

.footer-text-green {
    color: #00BC74;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

@media (max-width: 900px) {
    .tickets-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
    }
    .ticket-header {
        height: auto;
        min-height: 320px;
    }
    .price-row.main .price-value {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .tickets-title {
        font-size: 32px;
    }
    .ticket-header, .ticket-body {
        padding: 30px;
    }
    .tickets-section {
        padding: 60px 20px;
    }
}

.location-section {
    position: relative;
    width: 100%;
    background-color: #0C0C0D;
    padding: 100px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.location-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 60px 0;
}

.location-map-wrapper {
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1E1F25;
}

.location-map-wrapper iframe {
    width: 100%;
    height: 500px;
    display: block;
}

@media (max-width: 768px) {
    .location-section {
        padding: 60px 20px;
    }

    .location-title {
        font-size: 32px;
        margin-bottom: 40px;
        text-align: left;
        width: 100%;
    }

    .location-container {
        align-items: flex-start;
    }

    .location-map-wrapper {
        border-radius: 24px;
    }

    .location-map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .location-section {
        padding: 40px 16px;
    }
    
    .location-map-wrapper {
        border-radius: 16px;
    }

    .location-map-wrapper iframe {
        height: 300px;
    }
}