@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

:root {
    --brand-blue: #2B60DE;
    --brand-yellow: #FFCB05;
    --brand-red: #B91C1C;
    --brand-purple: #8B1FDB;
    --dark-bg: #020412;
    --card-bg: #0F1221;
    --text-gray: #B0B5C9;
    --input-bg: #1A1F35;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: white;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./images/tokyo.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 80px;
}

.hero-small {
    height: 40vh;
    min-height: 300px;
    padding-bottom: 0;
}

.date-pill {
    background-color: #B91C1C;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 24px;
    display: inline-block;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--brand-yellow);
    display: block;
}

.hero-small h1 { font-size: 3rem; }

.location-sub {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary { background-color: #B91C1C; color: white; }
.btn-glass {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.stats-bar {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
}

.stat-card {
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card i { font-size: 1.8rem; margin-bottom: 5px; }
.stat-card .label { font-size: 0.9rem; opacity: 0.9; }
.stat-card .value { font-size: 1.4rem; font-weight: 700; }

.stat-blue { background-color: var(--brand-blue); }
.stat-red { background-color: #C21515; }
.stat-yellow { background-color: #DFA600; color: #222; }
.stat-purple { background-color: var(--brand-purple); }

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
}

.section-title h2 { font-size: 2.5rem; margin-bottom: 10px; }
.section-title p { color: var(--text-gray); }

.format-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 16px;
}

.day-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.day-1 { background-color: #D21F1F; }
.day-2 { background-color: var(--brand-blue); }
.day-3 { background-color: var(--brand-yellow); color: black; }

.format-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.format-card p { color: var(--text-gray); line-height: 1.6; font-size: 0.95rem; }


.comp-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.comp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comp-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.comp-text p { color: var(--text-gray); margin-bottom: 30px; line-height: 1.6; }

.check-list .item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.check-list i {
    color: white;
    background-color: var(--brand-red);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 15px;
}

.schedule-container { margin-bottom: 40px; }
.timeline-item {
    border-left: 4px solid var(--brand-red);
    padding: 20px 0 20px 30px;
    margin-left: 20px;
}
.timeline-box {
    background-color: #121626;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.date-label { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 5px; display: block; }
.event-name { font-size: 1.3rem; font-weight: 600; }
.time-label { color: var(--text-gray); font-size: 0.9rem; }

.passes-section { text-align: center; margin-bottom: 100px; }
.passes-intro { max-width: 700px; margin: 0 auto 50px auto; color: var(--text-gray); }

.price-card {
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.card-header { padding: 20px; text-align: center; font-weight: 700; font-size: 1.2rem; color: #222; }
.card-orange .card-header { background-color: #E66D00; color: white; }
.card-orange { background-color: #D96000; }
.card-yellow .card-header { background-color: #FFCB05; }
.card-yellow { background-color: #E6B500; }
.card-blue .card-header { background-color: #3B5EE8; color: white; }
.card-blue { background-color: #4C6EF5; }

.price-body { padding: 20px; flex-grow: 1; }
.price-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.price-box-container { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 15px; }
.price-box { border: 2px solid rgba(255,255,255,0.8); padding: 8px; text-align: center; font-weight: 700; color: white; border-radius: 4px; }
.card-yellow .price-box { color: #222; border-color: rgba(0,0,0,0.5); }
.card-yellow .price-row { color: #222; }
.features-list { margin-top: 20px; font-size: 0.85rem; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.3); }
.card-yellow .features-list { border-top-color: rgba(0,0,0,0.2); color: #222; }
.card-blue .features-list, .card-orange .features-list { color: rgba(255,255,255,0.9); }
.features-list li { list-style: none; margin-bottom: 8px; padding-left: 15px; position: relative; }
.features-list li::before { content: "•"; position: absolute; left: 0; }

.cta-section {
    background: linear-gradient(90deg, #E81C2E 0%, #4655D6 100%);
    text-align: center;
}

.cta-section h2 { font-size: 2.5rem; margin-bottom: 10px; }
.cta-section p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }

.btn-yellow {
    background-color: var(--brand-yellow);
    color: #222;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.site-header {
    background-color: rgba(2, 4, 18, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-yellow);
    letter-spacing: 0.5px;
}

.site-header nav a {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    font-weight: 500;
    margin-left: 28px;
    transition: color 0.2s;
}

.site-header nav a:hover,
.site-header nav a.active { color: white; }

.site-header nav a.nav-register {
    background-color: var(--brand-red);
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
}

.site-header nav a.nav-register:hover { background-color: #9e1818; }

.card-yellow .price-body p { color: #444; }

.back-link { color: var(--brand-blue); }

footer {
    background-color: #020412;
    padding: 30px;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}

.form-container {
    background-color: var(--card-bg);
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #2A2F45;
}

.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

label { display: block; margin-bottom: 8px; color: var(--text-gray); font-size: 0.9rem; }

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--input-bg);
    border: 1px solid #2A2F45;
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
}

.file-upload-box {
    border: 2px dashed #2A2F45;
    padding: 30px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.file-upload-box:hover { border-color: var(--brand-blue); background-color: rgba(43, 96, 222, 0.05); }

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .stats-bar { padding-top: 24px; }
    .form-row { grid-template-columns: 1fr; }
}

.hero.hero-small {
    background: var(--brand-blue);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    height: auto;
    min-height: auto;
}

.hero-small .location-sub {
    color: var(--brand-yellow);
    font-weight: bold;
}

.btn.btn-yellow {
    background-color: var(--brand-yellow);
    border-color: var(--brand-yellow);
    color: #212529;
    font-weight: bold;
}

.btn.btn-yellow:hover {
    background-color: #e6b604;
    border-color: #e6b604;
    color: #212529;
}
