:root {
    --ink: #070d2d;
    --ink-soft: #10183f;
    --panel: #10183a;
    --pink: #f83c82;
    --pink-dark: #cc1c67;
    --line: #e7e8ef;
    --muted: #6d7285;
    --paper: #ffffff;
    --glow: rgba(248, 60, 130, 0.25);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

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

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    min-height: 78px;
    padding: 14px clamp(18px, 5vw, 44px);
    color: #fff;
    background: #020927;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-button {
    width: 36px;
    height: 36px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}

.brand,
.footer-brand {
    justify-self: center;
    display: grid;
    justify-items: center;
    color: #fff;
    min-width: 0;
}

.brand-name {
    max-width: min(46vw, 360px);
    color: var(--pink);
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: clamp(24px, 4.6vw, 42px);
    line-height: 0.95;
    white-space: nowrap;
}

.brand-kicker {
    margin-top: 2px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.header-cta,
.primary-button,
.buy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 5px;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, #ff5796, var(--pink));
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 12px 30px var(--glow);
}

.header-cta {
    min-width: 118px;
    padding: 0 18px;
}

.header-cta-disabled,
.disabled-button {
    background: #68708a;
    box-shadow: none;
}

.hero {
    padding: clamp(44px, 8vw, 78px) clamp(20px, 6vw, 72px);
    color: #fff;
    background:
        radial-gradient(circle at 75% 20%, rgba(248, 60, 130, 0.22), transparent 28%),
        linear-gradient(115deg, rgba(5, 10, 45, 0.96), rgba(5, 10, 45, 0.88)),
        url("Tour-featued.png") center / cover;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 620px) minmax(300px, 360px);
    gap: clamp(28px, 6vw, 92px);
    align-items: center;
    justify-content: center;
    width: min(100%, 1120px);
    min-height: 330px;
    margin: 0 auto;
}

.hero-copy {
    width: 100%;
    max-width: 620px;
}

.hero h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(38px, 7vw, 72px);
    line-height: 0.96;
    text-transform: uppercase;
}

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

.hero p {
    max-width: 520px;
    margin: 0;
    font-size: 17px;
}

.next-event-card {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(7, 13, 45, 0.72);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.eyebrow {
    margin: 0 0 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.event-place {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.icon-calendar {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2px solid currentColor;
    border-radius: 5px;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 18px 0;
}

.countdown span {
    display: grid;
    justify-items: center;
    padding-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
}

.countdown span:last-child {
    border-right: 0;
}

.countdown strong {
    color: var(--pink);
    font-size: 30px;
    line-height: 1;
}

.primary-button {
    width: 100%;
    min-height: 54px;
}

.notice {
    margin-top: 14px !important;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px !important;
}

.empty-title {
    margin: 12px 0 18px !important;
    font-size: 22px !important;
    font-weight: 800;
}

.section,
.confidence-box,
.interlink-section {
    width: min(100% - 36px, 1180px);
    margin: 0 auto;
}

.section {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

h2 {
    margin: 0;
    font-size: clamp(20px, 2.8vw, 28px);
    line-height: 1.15;
    text-transform: uppercase;
}

.text-action {
    border: 0;
    color: var(--pink);
    background: transparent;
    font-weight: 800;
    cursor: pointer;
}

.event-list {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.event-row {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 190px 128px;
    gap: 20px;
    align-items: center;
    min-height: 118px;
    padding: 16px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.event-row:last-child {
    border-bottom: 0;
}

.date-tile {
    display: grid;
    justify-items: center;
    padding: 8px 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
}

.date-tile span,
.date-tile small {
    font-size: 11px;
}

.date-tile strong {
    color: var(--pink);
    font-size: 22px;
}

.event-info {
    display: grid;
    gap: 2px;
    min-width: 0;
    font-size: 14px;
}

.event-info p,
.event-info a {
    margin: 0;
}

.event-name {
    color: var(--ink);
}

.event-title {
    color: var(--ink);
    font-weight: 800;
}

.event-chart {
    min-height: 82px;
}

.event-chart img {
    width: 168px;
    height: 82px;
    object-fit: contain;
    margin: 0 auto;
}

.buy-button {
    min-width: 112px;
    padding: 0 18px;
}

.list-footer,
.muted-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
}

.confidence-box {
    margin-top: 22px;
    padding: 24px;
    border: 1px solid rgba(248, 60, 130, 0.35);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 242, 247, 0.94), #fff);
    text-align: center;
}

.confidence-box h2 {
    color: var(--pink);
    text-transform: none;
}

.confidence-copy {
    max-width: 760px;
    margin: 12px auto 22px;
}

.confidence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.confidence-grid div {
    display: grid;
    justify-items: center;
    gap: 6px;
}

.confidence-icon {
    width: 34px;
    height: 34px;
    color: var(--ink);
}

.confidence-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.confidence-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(110px, 1fr));
    gap: 12px;
}

.city-grid a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 5px;
    font-weight: 800;
    font-size: 13px;
}

.chart-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.chart-card {
    display: grid;
    gap: 7px;
    justify-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    text-align: center;
}

.chart-card img {
    width: 100%;
    height: 118px;
    object-fit: contain;
}

.chart-card strong,
.chart-card .chart-title,
.chart-card span,
.chart-card small {
    display: block;
}

.chart-card .chart-title {
    color: var(--ink);
    font-weight: 800;
}

.chart-card > a:last-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 24px;
    border: 1px solid var(--pink);
    border-radius: 4px;
    color: var(--pink);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.content-section p,
.faq-item p {
    color: #242b45;
    font-size: 16px;
}

.faq-section {
    max-width: 1180px;
}

.faq-section .section-heading {
    margin-bottom: 18px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 10px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(7, 13, 45, 0.04);
}

.faq-item summary {
    position: relative;
    list-style: none;
    padding: 16px 46px 16px 18px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: var(--pink);
    font-size: 22px;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--muted);
    line-height: 1.65;
}

.interlink-section {
    padding: 22px 0 32px;
}

.interlink-section div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.interlink-section a {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 800;
}

.site-footer {
    padding: 34px clamp(20px, 6vw, 72px);
    color: #fff;
    background: #020927;
}

.site-footer .footer-brand {
    justify-items: start;
    margin-bottom: 18px;
}

.site-footer p {
    max-width: 760px;
    margin: 0 0 18px;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 18px;
    margin-bottom: 14px;
}

.site-footer nav a {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    padding-right: 18px;
}

.site-footer nav a:last-child {
    border-right: 0;
}

.is-hidden {
    display: none !important;
}

@media (max-width: 860px) {
    .site-header {
        grid-template-columns: 38px 1fr auto;
        min-height: 68px;
        padding-inline: 16px;
    }

    .header-cta {
        min-width: 96px;
        padding: 0 12px;
        font-size: 11px;
    }

    .brand-name {
        max-width: 42vw;
    }

    .hero {
        padding: 38px 20px 28px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .hero h1 {
        font-size: clamp(34px, 11vw, 48px);
    }

    .event-row {
        grid-template-columns: 62px minmax(0, 1fr) 92px;
        gap: 12px;
        padding: 14px;
    }

    .event-chart {
        display: block;
        min-height: 58px;
    }

    .event-chart img {
        width: 92px;
        height: 58px;
    }

    .buy-button {
        min-width: 86px;
        padding: 0 10px;
        font-size: 11px;
    }

    .confidence-grid,
    .chart-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .city-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 520px) {
    .section,
    .confidence-box,
    .interlink-section {
        width: min(100% - 24px, 1180px);
    }

    .hero {
        padding-top: 30px;
    }

    .next-event-card {
        padding: 18px;
    }

    .countdown {
        gap: 4px;
    }

    .countdown strong {
        font-size: 25px;
    }

    .event-row {
        grid-template-columns: 54px minmax(0, 1fr) 76px;
        align-items: start;
    }

    .buy-button {
        grid-column: 2 / 4;
        justify-self: start;
    }

    .event-chart img {
        width: 76px;
        height: 52px;
    }

    .confidence-grid,
    .chart-grid,
    .city-grid {
        grid-template-columns: 1fr 1fr;
    }

    .confidence-box {
        text-align: left;
    }

    .confidence-grid div {
        justify-items: start;
    }
}
