:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #d4af37;
    /* Gold */
    --accent-glow: rgba(212, 175, 55, 0.3);
    --secondary-bg: #111111;
    --font-main: 'Outfit', sans-serif;
    --font-jp: 'Zen Kaku Gothic New', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-jp);
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero h1 {
    font-family: var(--font-main);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 2vh;
    margin-bottom: 1rem;
    width: 100%;
}

.hero-logo-img {
    height: auto;
    max-height: 100px;
    max-width: 40vw;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}

.logo-x {
    font-family: var(--font-main);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent-color);
    font-weight: 300;
    line-height: 1;
}

.main-title-text {
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-logo-img {
        max-height: 60px;
    }

    .logo-title {
        gap: 10px;
    }
}

.sub-title {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    margin-bottom: 3rem;
    color: #ccc;
}

.date-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
    margin-bottom: 4rem;
}

.year {
    font-size: 1.2rem;
    font-weight: 300;
}

.date {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-color);
}

.day {
    font-size: 1.2rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
}

.cta-button:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
}

.scroll-indicator span {
    font-family: var(--font-main);
    font-size: 0.7rem;
    margin-bottom: 10px;
    letter-spacing: 0.2em;
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, #fff, transparent);
}

/* Sections General */
section {
    padding: 100px 20px;
    position: relative;
    background-color: var(--bg-color);
    /* Ensure sections cover video */
    z-index: 1;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Artists Section */
.artists-section {
    background-color: var(--secondary-bg);
}

.artist-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 50px;
}

.vs-badge {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    text-align: center;
    margin: 20px 0;
    font-style: italic;
    text-shadow: 0 0 10px var(--accent-glow);
}

.artist-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    /* Remove underline for link */
    color: var(--text-color);
}

.artist-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(120%);
    transition: all 0.5s ease;
}

.artist-card:hover .artist-image {
    filter: grayscale(0%) contrast(100%);
}

.artist-info {
    padding: 20px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1));
    border-left: 3px solid var(--accent-color);
    margin-top: -50px;
    z-index: 2;
    margin-left: 20px;
    backdrop-filter: blur(5px);
    width: fit-content;
}

.artist-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.artist-info p {
    font-size: 0.9rem;
    opacity: 0.7;
    letter-spacing: 0.2em;
}

@media (min-width: 768px) {
    .artist-container {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .artist-card {
        width: 45%;
    }

    .vs-badge {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        font-size: 5rem;
    }
}

/* Details Section */
.details-section {
    background-color: var(--bg-color);
}

.details-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.detail-item:hover {
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.05);
}

.detail-item .label {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.detail-item .value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Access Section */
.access-section {
    background-color: var(--secondary-bg);
}

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

.address {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.map-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 5px;
}

/* After Party Section */
.after-party-section {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.after-party-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.after-party-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--accent-color);
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.ap-header {
    margin-bottom: 3rem;
}

.ap-catch {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--accent-glow);
    animation: pulse 2s infinite;
}

.ap-sub-catch {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 700;
}

.ap-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.ap-info-row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
}

.ap-label {
    font-family: var(--font-main);
    color: var(--accent-color);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.ap-value {
    font-size: 2rem;
    font-weight: 700;
}

.ap-small {
    font-size: 1rem;
    font-weight: 400;
    margin-left: 10px;
}

.ap-image-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.ap-food-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.ap-food-img:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.ap-venue-box {
    margin-top: 2rem;
}

.ap-venue-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-main);
}

.ap-address,
.ap-tel {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.ap-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.ap-link:hover {
    color: #fff;
    border-color: #fff;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .ap-info-row {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    .sp-only {
        display: block;
    }
}

/* Ticket Section */
.ticket-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/hero_bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 150px 20px;
}

.ticket-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ticket-content p {
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.ticket-button {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: transparent;
    border: 1px solid #555;
    color: #888;
    text-decoration: none;
    font-size: 1.2rem;
    cursor: not-allowed;
}

.ticket-button.disabled {
    pointer-events: none;
}

/* Footer */
footer {
    padding: 50px 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    background-color: #000;
    z-index: 1;
    position: relative;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .date {
        font-size: 3rem;
    }

    .artist-info {
        margin-top: -30px;
    }
}

/* =========================================
   Ticket Page Styles (Refined)
   ========================================= */

/* Header & Nav Layout */
.page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 0;
    width: 100%;
}

.page-title {
    margin-bottom: 2rem;
    text-align: center;
    font-family: var(--font-main);
    letter-spacing: 0.1em;
}

/* Navigation Menu */
.ticket-nav {
    width: 100%;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.ticket-nav ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ticket-nav li {
    margin: 0;
    padding: 0;
    display: block;
}

.ticket-nav li a {
    text-decoration: none;
    color: #888;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 10px 15px;
    position: relative;
    display: block;
    transition: all 0.3s ease;
}

.ticket-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.ticket-nav li a:hover {
    color: var(--accent-color);
}

.ticket-nav li a:hover::after {
    width: 80%;
}

/* SCROLL DOWN Indicator */
.scroll-down-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-down i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Ticket Page Container */
.content-container.ticket-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 100px;
}

.citation {
    display: none;
}

/* Category Sections */
.ticket-category-section {
    width: 100%;
    max-width: 1300px;
    /* Increased width to accommodate 4 columns */
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    scroll-margin-top: 20px;
    padding: 0 20px;
    /* Ensure padding on small screens */
}

.category-header {
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.category-header h2 {
    font-size: 1.8rem;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    text-align: left;
}

/* Accordion Styles */
.accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, margin-top 0.3s ease;
}

.category-header {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.category-header:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
}

.category-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0;
    width: 100%;
}

.accordion-icon {
    font-size: 1.2rem;
    color: var(--accent-color);
    transition: transform 0.4s ease;
}

.category-header.active .accordion-icon {
    transform: rotate(180deg);
}

.category-header.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-color);
}

/* Ensure section spacing is managed */
.ticket-category-section {
    margin-bottom: 20px;
    /* Reduced margin when collapsed */
    transition: margin-bottom 0.3s ease;
}

/* Ticket Cards Grid */
.ticket-grid {
    flex-grow: 1;
    display: grid;
    /* Default for mobile: 1 column */
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
}

@media (min-width: 600px) {
    .ticket-grid {
        /* Tablet: 2 columns */
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .ticket-grid {
        /* Desktop: Force 4 columns */
        grid-template-columns: repeat(4, 1fr);
    }
}

.ticket-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Fill grid cell height */
    min-height: 0;
}

.ticket-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.ticket-card.vip-card {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.5));
}

.ticket-card.vip-card::before {
    content: 'VIP';
    position: absolute;
    top: 8px;
    right: -25px;
    background: var(--accent-color);
    color: #000;
    width: 100px;
    padding: 2px 0;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.6rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.ticket-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 5px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.ticket-icon .plus {
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    opacity: 0.8;
}

.ticket-name {
    font-size: 1rem;
    margin-bottom: 5px;
    min-height: 2.5em;
    /* Adjusted for alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.ticket-price {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.ticket-desc {
    font-size: 0.75rem;
    margin-bottom: 10px;
    color: #ccc;
    line-height: 1.3;
    max-width: 95%;
    flex-grow: 1;
    /* Push button down */
}

.ticket-buy-btn {
    display: inline-block;
    width: 100%;
    padding: 8px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-main);
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    margin-top: 5px;
}

.ticket-buy-btn:hover {
    background: #fff;
    color: #000;
}

.ticket-buy-btn.main-btn {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

.ticket-buy-btn.main-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.ticket-buy-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #555;
    color: #555;
    background: transparent;
}

/* Global Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* SCROLL DOWN Indicator (Fixed & High Visibility) */
.scroll-down-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    /* Ensure it floats above everything */
    display: flex;
    justify-content: center;
    pointer-events: none;
    /* Allow clicks to pass through */
}

.scroll-down {
    background: rgba(5, 5, 5, 0.9);
    /* Strong dark background to block underlying text */
    border: 1px solid var(--accent-color);
    /* Gold border for visibility */
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    /* Glow effect */
    backdrop-filter: blur(4px);
}

.scroll-down i {
    font-size: 1rem;
    color: var(--accent-color);
}