@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap');

@font-face {
    font-family: "Ounen-mouhitsu";
    src: url("assets/fonts/Ounen-mouhitsu.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-bg: rgba(15, 10, 20, 0.92);
    --color-bg-dark: rgba(8, 4, 15, 0.92);
    --color-text: #FFF5F7;
    --color-text-muted: #C4A0B0;
    --color-accent: #FF7EB3;
    --color-accent-glow: rgba(255, 126, 179, 0.4);
    --color-primary: #FF5E99;
    --color-secondary: #FFB3D0;
    --color-card-bg: rgba(40, 20, 35, 0.7);
    --color-card-border: rgba(255, 200, 220, 0.15);
    --color-spring-pink: rgba(255, 183, 197, 0.2);
    --color-spring-accent: #FF8FAB;

    --font-serif: "Noto Serif JP", serif;
    --font-sans: "Zen Kaku Gothic New", sans-serif;
    --font-yuji: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Zen Kaku Gothic New", sans-serif;

    --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0d0610;
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

/* Background Effects */
#stars,
#twinkle-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

#stars {
    background: radial-gradient(circle at center, #1a0f22 0%, #0d0610 100%);
}

/* ───────────────────────────────
   Layout Utilities
─────────────────────────────── */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

/* ───────────────────────────────
   Header
─────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
    background-color: transparent;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 100, 150, 0.85) 0%, rgba(255, 100, 150, 0) 100%);
    z-index: -1;
    transition: all 0.3s ease;
}

.header.scrolled {
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 6px 25px rgba(255, 100, 150, 0.2);
    border-bottom: 1px solid rgba(255, 180, 210, 0.4);
}

.header.scrolled::before {
    background: linear-gradient(90deg, rgba(255, 80, 130, 0.95) 0%, rgba(255, 80, 130, 0.3) 100%);
}

.header-inner {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-yuji);
    font-size: 2rem;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(255, 126, 179, 0.6);
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-accent);
    transition: width 0.3s var(--easing);
}

.nav-list a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ───────────────────────────────
   Buttons
─────────────────────────────── */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
    text-align: center;
    cursor: pointer;
}

.btn-header {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    color: #fff;
    font-size: 0.9rem;
    padding: 10px 24px;
}

.mobile-ticket-btn {
    display: none !important;
}

.btn-header:hover,
.btn-hero:hover,
.btn-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px var(--color-accent-glow);
}

.btn-hero {
    background: #fff;
    color: var(--color-bg);
    font-size: 1.1rem;
    margin-top: 40px;
    min-width: 220px;
}

.btn-gyro {
    display: none;
    margin: 15px auto 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    backdrop-filter: blur(5px);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    animation: pulse-sm 2s infinite;
    white-space: nowrap;
}

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

    50% {
        transform: scale(1.02);
        opacity: 1;
        border-color: rgba(255, 255, 255, 0.8);
    }

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

.btn-gyro:hover,
.btn-gyro.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    animation: none;
}

.btn-ticket {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    color: white;
    width: 100%;
    margin-top: 20px;
}

.btn-gold {
    background: linear-gradient(135deg, #FF7EB3, #FF5E99);
    color: #fff;
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
}

/* Shiny CTA Button */
.shiny-cta {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    border-radius: 9999px;
    padding: 2px;
    text-decoration: none;
    transition: transform 0.3s var(--easing);
    box-shadow: 0 0 15px -5px rgba(255, 126, 179, 0.3);
    color: transparent;
}

.shiny-cta::before {
    content: "";
    position: absolute;
    inset: -1000%;
    background: conic-gradient(from 90deg at 50% 50%,
            #FFF0F5 0%,
            #FFF0F5 60%,
            #FF7EB3 80%,
            #FFB3D0 85%,
            #FF7EB3 90%,
            #FFF0F5 100%);
    animation: spin 3s linear infinite;
    z-index: 0;
}

.shiny-cta span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #0B1120;
    color: #F8FAFC;
    border-radius: 9999px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    z-index: 1;
    transition: all 0.3s ease;
    font-family: 'Inter', var(--font-sans);
    backdrop-filter: blur(10px);
}

.shiny-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(255, 126, 179, 0.6);
}

.shiny-cta:hover span {
    background-color: rgba(255, 240, 245, 0.95);
    color: #2a0015;
    text-shadow: 0 0 10px rgba(255, 126, 179, 0.6);
}

.btn-header.shiny-cta {
    padding: 1.5px;
}

.btn-header.shiny-cta span {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.ticket-card .shiny-cta {
    width: 100%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ───────────────────────────────
   Hero Section
─────────────────────────────── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('assets/hero_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#lantern-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    opacity: 0;
    animation: fadeIn 1.5s var(--easing) forwards 0.5s;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-logo {
    max-width: 380px;
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    filter: drop-shadow(0 0 15px rgba(255, 126, 179, 0.6)) drop-shadow(0 0 40px rgba(255, 100, 160, 0.4)) drop-shadow(0 0 80px rgba(255, 80, 140, 0.2)) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 15px rgba(255, 126, 179, 0.6)) drop-shadow(0 0 40px rgba(255, 100, 160, 0.4)) drop-shadow(0 0 80px rgba(255, 80, 140, 0.2)) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(255, 160, 200, 0.8)) drop-shadow(0 0 60px rgba(255, 126, 179, 0.5)) drop-shadow(0 0 100px rgba(255, 100, 160, 0.3)) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
    }
}

.hero-tagline {
    font-family: var(--font-yuji);
    font-size: 1.5rem;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    margin-bottom: -10px;
    z-index: 10;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 126, 179, 0.8),
        0 0 40px rgba(255, 126, 179, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.hero-title-jp {
    font-family: var(--font-yuji);
    font-size: clamp(3.5rem, 13vw, 8rem);
    color: #FFFFFF;
    letter-spacing: 0.08em;
    font-weight: 700;
    line-height: 1.1;
    margin: 10px 0;
    display: block;
    z-index: 5;
    position: relative;
    text-shadow:
        0 4px 30px rgba(0, 0, 0, 0.9),
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(0, 0, 0, 0.5);
}

.hero-location-subtitle {
    font-family: var(--font-yuji);
    font-size: 1.8rem;
    color: #FFFFFF;
    text-shadow:
        0 0 20px rgba(255, 126, 179, 0.8),
        0 0 40px rgba(255, 126, 179, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.5);
    margin-top: 0px;
    margin-bottom: 5px;
    letter-spacing: 0.15em;
    z-index: 5;
    position: relative;
    font-weight: 700;
}

.hero-subtitle-en {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: #94A3B8;
    margin-top: -5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-info {
    margin-bottom: 20px;
}

.hero-info .date {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
    font-family: var(--font-sans);
    color: #FFFFFF;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-info .day {
    font-size: 0.8rem;
    margin-left: 5px;
    background: #334155;
    color: #F8FAFC;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
}

.hero-info .venue {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 0px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.venue-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s var(--easing);
    margin-top: 10px;
}

.venue-link:hover .venue,
.venue-link:hover .venue-address {
    color: var(--color-accent);
    text-shadow: 0 0 20px var(--color-accent-glow), 0 4px 15px rgba(0, 0, 0, 0.9);
}

.venue-address {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    margin-top: 5px;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.8);
}

/* ───────────────────────────────
   Section Headers
─────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.en-title {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.jp-title {
    font-family: var(--font-yuji);
    font-size: 2.5rem;
    color: var(--color-accent);
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 126, 179, 0.4);
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-top: 15px;
}

/* ───────────────────────────────
   About Section
─────────────────────────────── */
.about {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 183, 197, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.text-lead {
    font-size: 1.4rem;
    font-feature-settings: "palt";
    line-height: 2;
    margin-bottom: 40px;
    font-family: var(--font-serif);
}

.text-body {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* ───────────────────────────────
   Highlights Grid
─────────────────────────────── */
.highlights {
    background: rgba(15, 10, 20, 0.6);
    padding: 80px 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s var(--easing), box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 126, 179, 0.1);
}

.h-icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.highlight-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--color-accent);
    font-weight: 700;
}

.highlight-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ───────────────────────────────
   Attractions
─────────────────────────────── */
.attractions {
    background: var(--color-bg);
}

.attraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.attraction-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s var(--easing), box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.att-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.att-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--easing);
}

.attraction-card:hover .att-img img {
    transform: scale(1.08);
}

.att-content {
    padding: 20px 24px 24px;
}

.att-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-accent);
    font-weight: 700;
}

.att-content p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ───────────────────────────────
   Safety
─────────────────────────────── */
.safety {
    background: rgba(15, 10, 20, 0.7);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.safety-item {
    background: rgba(45, 20, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s var(--easing), border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.safety-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 126, 179, 0.3);
}

.safety-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.safety-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--color-accent);
    font-weight: 700;
}

.safety-item p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ───────────────────────────────
   Schedule
─────────────────────────────── */
.schedule {
    background: var(--color-bg);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 126, 179, 0.6), rgba(255, 255, 255, 0.1));
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -34px;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent);
}

.timeline-item.highlight .details {
    background: rgba(255, 126, 179, 0.1);
    border: 1px solid rgba(255, 126, 179, 0.25);
    border-radius: 12px;
    padding: 18px;
    margin-top: 5px;
}

.timeline-item.highlight::after {
    width: 14px;
    height: 14px;
    left: -36px;
    top: 6px;
    box-shadow: 0 0 20px rgba(255, 126, 179, 0.8), 0 0 40px rgba(255, 126, 179, 0.4);
}

.timeline-item .time {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--color-accent);
    margin-bottom: 5px;
    font-weight: 700;
}

.timeline-item .details h4 {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 5px;
}

.timeline-item .details p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-top: 30px;
    line-height: 1.9;
}

/* ───────────────────────────────
   Tickets
─────────────────────────────── */
.tickets {
    background: var(--color-bg);
}

/* Guarantee Explainer */
.ticket-guarantee-explainer {
    background: rgba(45, 20, 40, 0.5);
    border: 1px solid rgba(255, 126, 179, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.ticket-guarantee-explainer h4 {
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 12px;
    font-weight: 700;
    font-family: var(--font-yuji);
}

.ticket-guarantee-explainer p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.ticket-guarantee-explainer strong {
    color: var(--color-text);
}

/* Ticket Columns */
.ticket-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.ticket-column {
    position: relative;
    padding: 30px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.6);
}

.ticket-column-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 4px 14px;
    border-radius: 6px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.standard-label {
    background: rgba(59, 130, 246, 0.2);
    color: #60A5FA;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.guarantee-label {
    background: rgba(34, 197, 94, 0.2);
    color: #4ADE80;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.ticket-column-title {
    font-size: 1.5rem;
    color: var(--color-text);
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-accent);
    font-family: var(--font-yuji);
}

/* Ticket Cards */
.ticket-card {
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s var(--easing), box-shadow 0.3s ease;
}

.ticket-card:hover {
    transform: translateY(-4px);
}

.standard-card {
    background: rgba(45, 20, 40, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.standard-card:hover {
    border-color: rgba(255, 126, 179, 0.4);
    box-shadow: 0 10px 30px rgba(255, 126, 179, 0.1);
}

.guarantee-card {
    background: rgba(45, 20, 40, 0.6);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.guarantee-card:hover {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
}

.ticket-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.deal-badge {
    background: linear-gradient(135deg, #FFB300, #FF8F00);
    color: #1a1000;
}

.guarantee-badge {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #fff;
}

.ticket-card h5 {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 15px;
    font-weight: 700;
}

.ticket-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1;
    font-family: 'Inter', var(--font-sans);
}

.guarantee-price {
    color: #4ADE80;
}

.tax {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-muted);
    vertical-align: baseline;
}

.ticket-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
    text-align: left;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.ticket-includes li {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-no-refund {
    color: #F87171;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.text-link {
    color: var(--color-accent);
    text-decoration: underline;
}

.text-link:hover {
    color: var(--color-secondary);
    opacity: 1;
}

/* ───────────────────────────────
   Important Notice
─────────────────────────────── */
.important-notice {
    background: rgba(255, 126, 179, 0.07);
    border: 1px solid rgba(255, 126, 179, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.important-notice h4 {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 15px;
    font-weight: 700;
}

.notice-list {
    list-style: disc;
    padding-left: 20px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.notice-list li {
    margin-bottom: 8px;
}

.notice-sub {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.3s var(--easing), box-shadow 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
    opacity: 1;
}

/* ───────────────────────────────
   Cancellation Policy
─────────────────────────────── */
.policy {
    background: rgba(15, 10, 20, 0.6);
}

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

.policy-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--color-card-border);
    background: var(--color-card-bg);
    backdrop-filter: blur(10px);
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
}

.policy-table th,
.policy-table td {
    padding: 16px 24px;
    text-align: center;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.policy-table th {
    background: rgba(255, 126, 179, 0.08);
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.policy-table td {
    color: var(--color-text-muted);
}

.policy-table td:first-child {
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
}

.policy-table tbody tr:last-child td {
    border-bottom: none;
}

.policy-table tbody tr:hover {
    background: rgba(255, 126, 179, 0.04);
}

.no-refund {
    color: #F87171 !important;
    font-weight: 600;
}

.has-refund {
    color: #4ADE80 !important;
    font-weight: 600;
}

.policy-note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-top: 20px;
    line-height: 1.8;
}

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

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.map-wrapper {
    width: 100%;
}

.map-container {
    width: 100%;
    padding-bottom: 70%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.access-info h4 {
    font-size: 1.4rem;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 15px;
}

.access-info p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* ───────────────────────────────
   FAQ
─────────────────────────────── */
.faq {
    background: rgba(15, 10, 20, 0.6);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: rgba(255, 126, 179, 0.3);
}

.faq-question {
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-item[open] .faq-question {
    color: var(--color-accent);
}

.faq-answer {
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ───────────────────────────────
   Footer
─────────────────────────────── */
.footer {
    background: rgba(2, 6, 23, 0.97);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.footer-title {
    font-family: var(--font-yuji);
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(255, 126, 179, 0.4);
}

.footer-title span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-family: var(--font-sans);
    letter-spacing: 0.2em;
}

.footer-sns {
    margin: 25px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 30px;
    margin-bottom: 25px;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.copyright {
    color: rgba(148, 163, 184, 0.5);
    font-size: 0.8rem;
    line-height: 1.8;
}

/* ───────────────────────────────
   Responsive – Desktop Up
─────────────────────────────── */
@media (min-width: 901px) {
    .hero {
        padding: 60px 0;
    }

    .hero-tagline {
        font-size: 2rem;
        letter-spacing: 0.2em;
    }

    .hero-location-subtitle {
        font-size: 2.5rem;
    }

    .hero-info .date {
        font-size: 2rem;
    }

    .btn-hero {
        margin-top: 20px;
    }
}

/* ───────────────────────────────
   Responsive – Tablet
─────────────────────────────── */
@media (max-width: 900px) {

    /* Header Mobile */
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 15, 30, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 30px;
        padding: 80px 40px;
        transition: right 0.4s var(--easing);
        border-left: 1px solid rgba(255, 126, 179, 0.15);
        z-index: 990;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 10px;
    }

    .nav-list a {
        font-size: 1.2rem;
    }

    .mobile-ticket-btn {
        display: inline-flex !important;
    }

    /* Sections */
    .section {
        padding: 70px 0;
    }

    .attraction-grid {
        grid-template-columns: 1fr;
    }

    .access-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .jp-title {
        font-size: 2rem;
    }

    .hero-title-jp {
        font-size: clamp(3.5rem, 20vw, 6rem);
        letter-spacing: 0.08em;
    }

    /* Tickets */
    .ticket-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Schedule */
    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding-left: 20px;
    }

    .timeline-item::after {
        left: -25px;
    }
}

/* ───────────────────────────────
   Responsive – Small Mobile
─────────────────────────────── */
@media (max-width: 600px) {
    .highlight-grid {
        grid-template-columns: 1fr 1fr;
    }

    .safety-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ticket-price {
        font-size: 2.2rem;
    }

    .policy-table th,
    .policy-table td {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .safety-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        gap: 15px 20px;
    }

    .ticket-price {
        font-size: 2rem;
    }
}