/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #333333;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 12px 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.language-selector:hover {
    background-color: #f5f5f5;
}

.lang-flag {
    font-size: 18px;
}

.lang-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.lang-text:hover {
    color: #00C0FF;
}

.lang-divider {
    color: #ccc;
    margin: 0 2px;
}

.language-selector i {
    font-size: 12px;
    color: #666;
}

/* Banner Section */
.banner-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* Blurred Background Layer */
.banner-bg-blur {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    z-index: 1;
    overflow: hidden;
}

.banner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px);
    transform: scale(1.1);
}

/* Sharp Foreground Layer */
.banner-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 90%;
    margin: 30px auto;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.main-content {
    padding: 30px 0;
    background-color: #ffffff;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Event Header */
.event-header {
    margin-bottom: 24px;
}

.event-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    font-size: 14px;
}

.meta-item i {
    color: #666666;
    font-size: 16px;
}

/* Tabs */
.tabs-wrapper {
    margin-bottom: 0;
    background-color: #ffffff;
    z-index: 999;
    transition: box-shadow 0.2s ease;
}

.tabs-wrapper.sticky {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 0;
    z-index: 999;
}

.tabs-wrapper.sticky .nav-tabs-custom {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 0;
    padding: 0 24px;
}

.tabs-placeholder {
    display: none;
}

.tabs-placeholder.active {
    display: block;
}

.nav-tabs-custom {
    display: flex;
    gap: 0;
    background-color: #ffffff;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    border-bottom: 1px solid #e9ecef;
}

.nav-tab {
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.nav-tab:hover {
    color: #00C0FF;
    background-color: #f8f9fa;
}

.nav-tab.active {
    color: #00C0FF;
    border-bottom-color: #00C0FF;
    background-color: #ffffff;
}

/* Content Card */
.content-card {
    background-color: #ffffff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Content Sections */
.content-section {
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.content-section:last-child {
    border-bottom: none;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-indicator {
    width: 4px;
    height: 24px;
    background-color: #00C0FF;
    border-radius: 2px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.section-content p {
    color: #555555;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.section-content p strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Location Section */
.btn-view-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #00C0FF;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 16px;
}

.btn-view-location:hover {
    background-color: #234a7a;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
}

.map-container.collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0;
}

.map-container.collapsible.open {
    max-height: 350px;
    margin-top: 16px;
}

/* Accordion */
.accordion {
    border: none;
}

.accordion-item {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: #ffffff;
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 20px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: #00C0FF;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d5f9f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background-color: #fafafa;
    padding: 20px;
    font-size: 13px;
    line-height: 1.8;
    color: #555555;
}

.accordion-body ol {
    padding-left: 20px;
    margin: 0;
}

.accordion-body ol li {
    margin-bottom: 12px;
    padding-left: 8px;
}

.accordion-body ol li:last-child {
    margin-bottom: 0;
}

/* Venue Section */
.venue-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.venue-image {
    width: 100%;
    height: auto;
    display: block;
}

.venue-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

/* Sidebar */
.sidebar-wrapper {
    position: sticky;
    top: 80px;
}

.sidebar-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 24px;
}

/* Promoter Section */
.promoter-section {
    margin-bottom: 20px;
}

.promoter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666666;
    margin-bottom: 8px;
}

.promoter-label i {
    font-size: 16px;
}

.promoter-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Sold Out Button */
.btn-sold-out {
    width: 100%;
    padding: 18px 20px;
    background-color: #7DD8F7;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: not-allowed;
    margin-bottom: 24px;
}

/* Buy Button (Active) */
.btn-buy {
    width: 100%;
    padding: 18px 20px;
    background-color: #00C0FF;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-bottom: 24px;
    transition: background-color 0.2s;
}

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

/* Price Section */
.price-section {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.price-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.price-subtitle {
    font-size: 12px;
    color: #888888;
}

/* Ticket Box */
.ticket-box {
    background-color: #e8f6f6;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px;
    border-left: 4px solid #00C0FF;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ticket-category {
    display: inline-block;
    padding: 6px 12px;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #666666;
}

.ticket-status-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: transparent;
    border: 1px solid #e91e63;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #e91e63;
}

.ticket-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.ticket-date {
    font-size: 12px;
    color: #666666;
    margin-bottom: 12px;
}

.ticket-price {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Footer */
.footer {
    background-color: #ffffff;
    border-top: 1px solid #e9ecef;
    padding: 40px 0;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-left {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-icon {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon i {
    font-size: 18px;
    color: #00C0FF;
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    color: #888888;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.footer-right {
    display: flex;
    align-items: flex-start;
}

.security-section {
    text-align: right;
}

.security-title {
    display: block;
    font-size: 12px;
    color: #666666;
    margin-bottom: 12px;
}

.payment-logos {
    display: flex;
    gap: 12px;
    align-items: center;
}

.payment-logo {
    height: 28px;
    width: auto;
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom span {
    font-size: 13px;
    color: #888888;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-container {
        padding: 0 16px;
    }

    .sidebar-wrapper {
        position: static;
        margin-top: 30px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-right {
        justify-content: flex-start;
    }

    .security-section {
        text-align: left;
    }
}

/* Mobile Sticky Bottom Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.mobile-bar-content {
    padding: 12px 16px;
    background-color: #ffffff;
}

.mobile-price-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
}

.mobile-toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.mobile-price-toggle i {
    font-size: 16px;
    color: #666;
    transition: transform 0.3s ease;
}

.mobile-price-toggle i.rotated {
    transform: rotate(180deg);
}

.mobile-bar-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.mobile-promoter {
    display: flex;
    flex-direction: column;
}

.mobile-promoter-label {
    font-size: 12px;
    color: #888888;
}

.mobile-promoter-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.mobile-sold-out-btn {
    padding: 14px 40px;
    background-color: #7DD8F7;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: not-allowed;
    white-space: nowrap;
}

/* Mobile Buy Button (Active) */
.mobile-buy-btn {
    padding: 14px 40px;
    background-color: #00C0FF;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.mobile-buy-btn:hover {
    background-color: #00a8e0;
}

/* Mobile Price Dropdown - Expands Upward */
.mobile-price-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.mobile-price-dropdown.open {
    max-height: 500px;
}

.mobile-price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px 12px;
    cursor: pointer;
}

.mobile-price-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.mobile-price-header i {
    font-size: 16px;
    color: #666;
}

.mobile-price-divider {
    border-bottom: 1px dashed #d0d0d0;
    margin: 0 16px;
}

.mobile-price-subtitle {
    padding: 12px 16px;
    font-size: 13px;
    color: #888888;
}

.mobile-ticket-box {
    margin: 0 16px 16px;
    padding: 16px;
    background-color: #e8f6f6;
    border-radius: 8px;
    border-left: 4px solid #00C0FF;
}

.mobile-ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.mobile-ticket-category-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #666666;
}

.mobile-ticket-status-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: transparent;
    border: 1px solid #e91e63;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #e91e63;
}

.mobile-ticket-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.mobile-ticket-date {
    font-size: 13px;
    color: #666666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.mobile-ticket-price {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

@media (max-width: 992px) {
    .mobile-sticky-bar {
        display: block;
    }

    .sidebar-wrapper {
        display: none;
    }

    .footer {
        padding-bottom: 180px;
    }
}

@media (max-width: 768px) {
    .event-title {
        font-size: 20px;
    }

    .event-meta {
        flex-direction: column;
        gap: 8px;
    }

    .nav-tabs-custom {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-tab {
        padding: 12px 16px;
        white-space: nowrap;
        font-size: 13px;
    }

    .content-section {
        padding: 20px 16px;
    }

    .footer-left {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 16px;
    }

    .event-title {
        font-size: 18px;
    }

    .section-title {
        font-size: 16px;
    }

    .sidebar-card {
        padding: 20px 16px;
    }
}
