/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #050510;
    --bg-surface: #0a0a1a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --accent-red: #ff2d55;
    --accent-red-glow: rgba(255, 45, 85, 0.4);
    --accent-cyan: #00f3ff;
    --accent-cyan-glow: rgba(0, 243, 255, 0.3);
    --accent-purple: #b025ff;
    --accent-purple-glow: rgba(176, 37, 255, 0.3);
    --accent-gold: #ffd700;
    --accent-pink: #ff6ec7;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.45);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(160deg, #050510 0%, #0d0520 30%, #150a28 60%, #0a0a1a 100%);
}

.bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.bg-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 45, 85, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 243, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(176, 37, 255, 0.06) 0%, transparent 50%);
    animation: bgFloat 25s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-30px, -40px); }
    66% { transform: translate(20px, -20px); }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(5, 5, 16, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0;
}

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

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-red);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px var(--accent-red-glow);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.nav-menu a:hover {
    color: var(--accent-red);
    background: rgba(255, 45, 85, 0.1);
}

/* ===== GLASS EFFECT ===== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass:hover {
    border-color: rgba(255, 45, 85, 0.25);
    background: var(--glass-hover);
    box-shadow: 0 8px 40px rgba(255, 45, 85, 0.08);
    transform: translateY(-3px);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-pink), var(--accent-red));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShift 4s ease infinite;
}

@keyframes titleShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1rem;
    line-height: 1.8;
}

section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 6rem 0 4rem;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(255, 45, 85, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 243, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-presents {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 0.3rem;
}

.presents-name {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, var(--accent-cyan), #ffffff, var(--accent-purple));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: presentsShimmer 4s ease infinite;
    filter: drop-shadow(0 0 15px var(--accent-cyan-glow));
}

@keyframes presentsShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.presents-and {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    letter-spacing: 0.2em;
}

.presents-label {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--accent-gold);
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    letter-spacing: 0.25em;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.15;
    position: relative;
}

.title-ai {
    display: block;
    font-size: clamp(3rem, 10vw, 7rem);
    background: linear-gradient(135deg, var(--accent-red), #ff6b6b, var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px var(--accent-red-glow));
    animation: titlePulse 3s ease-in-out infinite;
}

.title-generation {
    display: block;
    font-size: clamp(2rem, 7vw, 5rem);
    background: linear-gradient(135deg, var(--text-primary), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.08em;
}

.title-music {
    display: block;
    font-size: clamp(1.8rem, 6vw, 4rem);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 25px var(--accent-cyan-glow));
    letter-spacing: 0.12em;
}

@keyframes titlePulse {
    0%, 100% { filter: drop-shadow(0 0 30px var(--accent-red-glow)); }
    50% { filter: drop-shadow(0 0 50px rgba(255, 45, 85, 0.6)); }
}

.hero-vol {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    letter-spacing: 0.15em;
}

.vol-in {
    font-weight: 400;
    font-size: 0.75em;
    color: var(--text-secondary);
    margin: 0 0.3em;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-red), #ff4444);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 25px var(--accent-red-glow);
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 40px rgba(255, 45, 85, 0.5);
}

.hero-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.hero-info-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 0 25px var(--accent-red-glow);
    transform: translateY(-5px);
}

.info-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    color: var(--accent-red);
    letter-spacing: 0.15em;
    font-weight: 700;
}

.info-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.info-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-info-card--link {
    text-decoration: none;
    cursor: pointer;
}

.hero-info-card--link:hover .info-map-link {
    color: var(--accent-red);
    transform: translateX(3px);
}

.info-map-link {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-top: 0.4rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.info-music-link {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.35rem 0.9rem;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-pink));
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--accent-red-glow);
}

.info-music-link:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 18px rgba(255, 45, 85, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-red), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.4; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== TIMETABLE SECTION ===== */
.timetable {
    background: rgba(0, 0, 0, 0.2);
}

.timetable-grid {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timetable-grid::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-red), var(--accent-purple), var(--accent-cyan), transparent);
}

.tt-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.tt-item:nth-child(1) { animation-delay: 0.1s; }
.tt-item:nth-child(2) { animation-delay: 0.2s; }
.tt-item:nth-child(3) { animation-delay: 0.3s; }
.tt-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    to { opacity: 1; transform: translateX(0); }
}

.tt-time {
    flex-shrink: 0;
    width: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1.5rem;
    position: relative;
}

.tt-time::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 1.75rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-red);
    box-shadow: 0 0 15px var(--accent-red-glow);
    z-index: 1;
}

.tt-hour {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-red);
    text-shadow: 0 0 10px var(--accent-red-glow);
}

.tt-content {
    flex: 1;
    margin-left: 1rem;
}

.tt-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.tt-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== RECRUIT SECTION ===== */
.recruit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.recruit-card {
    position: relative;
    padding: 2.5rem 2rem;
}

.recruit-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-pink));
    border-radius: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.recruit-badge.audience {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
}

.recruit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.recruit-card h4 {
    font-size: 1rem;
    color: var(--accent-red);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.recruit-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent-red);
}

.detail-item.important {
    border-left-color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.05);
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.detail-value {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.recruit-conditions {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.recruit-conditions li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.recruit-conditions li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 700;
}

.btn-recruit {
    display: block;
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-red), #ff4444);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px var(--accent-red-glow);
}

.btn-recruit.audience {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    box-shadow: 0 4px 20px var(--accent-cyan-glow);
}

.btn-recruit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 45, 85, 0.5);
}

.btn-recruit.audience:hover {
    box-shadow: 0 8px 35px var(--accent-cyan-glow);
}

/* ===== TICKET SECTION ===== */
.ticket {
    background: rgba(0, 0, 0, 0.2);
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.ticket-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.ticket-card.featured {
    border-color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.ticket-card.featured:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}

.ticket-recommend {
    position: absolute;
    top: 12px;
    right: -30px;
    background: linear-gradient(135deg, var(--accent-gold), #ffaa00);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 2.5rem;
    transform: rotate(35deg);
    letter-spacing: 0.05em;
}

.ticket-type {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-red);
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.ticket-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.ticket-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ticket-price {
    margin-top: auto;
}

.price-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ticket-card.featured .price-amount {
    background: linear-gradient(135deg, var(--accent-gold), #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.ticket-variants {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.variant {
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== FOOD & DRINK SECTION ===== */
.food-content {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 3rem;
}

.food-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.food-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.food-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.food-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.food-tag {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 500;
    transition: all 0.3s ease;
}

.food-tag:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

/* ===== NOTES SECTION ===== */
.notes {
    background: rgba(0, 0, 0, 0.2);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.notes-card {
    padding: 2.5rem;
}

.notes-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.notes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notes-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

.notes-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-size: 1.2rem;
    line-height: 1.5;
}

.notes-list li strong {
    color: var(--accent-red);
    font-weight: 600;
}

.notes-disclaimer {
    margin-top: 2rem;
    padding: 1.25rem;
    background: rgba(255, 45, 85, 0.08);
    border: 1px solid rgba(255, 45, 85, 0.2);
    border-radius: var(--radius-sm);
}

.notes-disclaimer p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 3rem;
}

.contact-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.btn-contact {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 25px var(--accent-cyan-glow);
}

.btn-contact:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 40px var(--accent-purple-glow);
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-red);
    background: rgba(255, 45, 85, 0.1);
}

.footer-credit {
    text-align: right;
}

.footer-credit p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(5, 5, 16, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 1rem;
    }

    .hero-info-grid {
        grid-template-columns: 1fr;
    }

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

    .ticket-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-credit {
        text-align: center;
    }

    .timetable-grid::before {
        left: 60px;
    }

    .tt-time {
        width: 60px;
    }

    .tt-hour {
        font-size: 0.9rem;
    }

    .tt-time::after {
        right: -5px;
    }

    .tt-content h3 {
        font-size: 1.1rem;
    }

    section {
        padding: 5rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-title .title-ai {
        font-size: 3.5rem;
    }

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

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .food-highlights {
        flex-direction: column;
        align-items: center;
    }
}
