html, body { overflow-x: hidden; max-width: 100vw; }

  .tourPage {
    position: relative;
    padding: 0 0 60px;
    background: var(--background);
    color: var(--text-primary);
  }

  /* HERO */
  .tourHero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 20px 64px;
    text-align: center;
    background: var(--gradient-hero);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
  }

  .tourHero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
  }

  .tourHeroBadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    margin-bottom: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-bright);
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--accent);
    border-radius: 100px;
  }

  .tourHeroBadge span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-bright);
    border-radius: 50%;
    animation: pulseDot 1.6s ease-in-out infinite;
  }

  @keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }

  .tourHeroTitle {
    margin: 0 0 16px;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -0.02em;
  }

  .tourHeroAccent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .tourHeroDesc {
    max-width: 620px;
    margin: 0 auto 36px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
  }

  .tourHeroStats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 36px;
  }

  .tourHeroStat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .tourHeroStatValue {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-bright);
    line-height: 1;
  }

  .tourHeroStatLabel {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted, var(--text-secondary));
  }

  /* SECTION BLOCKS */
  .tourSection {
    padding: 60px 20px;
    border-bottom: 1px solid var(--border-subtle);
  }

  .tourSection:last-child { border-bottom: none; }

  .tourSectionLabel {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
  }

  .tourSectionTitle {
    margin: 0 0 12px;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
  }

  .tourSectionSubtitle {
    margin: 0 0 40px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 680px;
  }

  /* HOW IT WORKS — TIMELINE */
  .tourTimeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 760px;
  }

  .tourTimeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
  }

  .tourTimelineItem {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 0 0 32px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.5s ease forwards;
  }

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

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

  .tourTimelineNum {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--background);
    background: var(--gradient-accent);
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 1;
  }

  .tourTimelineContent {
    padding-top: 10px;
  }

  .tourTimelineContent h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
  }

  .tourTimelineContent p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-secondary);
  }

  /* LEADERBOARD INFO — HIGHLIGHT BOX */
  .tourHighlightGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 16px;
  }

  .tourHighlightCard {
    display: flex;
    flex-direction: column;
    padding: 22px 20px;
    background: var(--background-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .tourHighlightCard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
  }

  .tourHighlightIcon {
    font-size: 1.6rem;
    margin-bottom: 12px;
    line-height: 1;
  }

  .tourHighlightCard h3 {
    margin: 0 0 6px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
  }

  .tourHighlightCard p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--text-secondary);
  }

  /* PRIZES — CARDS GRID */
  .tourPrizeGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 8px;
  }

  .tourPrizeCard {
    display: flex;
    flex-direction: column;
    padding: 28px 22px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

  .tourPrizeCard:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
  }

  .tourPrizeCardIcon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.5rem;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
  }

  .tourPrizeCard h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-bright);
  }

  .tourPrizeCard p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-secondary);
    flex: 1;
  }

  /* MOBILE — comparison table */
  .tourEligTable {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
  }

  .tourEligTable th,
  .tourEligTable td {
    padding: 13px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary);
  }

  .tourEligTable th {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(255,255,255,0.04);
  }

  .tourEligTable tr:last-child td { border-bottom: none; }

  .tourEligTable td:first-child {
    font-weight: 600;
    color: var(--text-secondary);
    width: 40%;
  }

  .tourBadgeOk {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ade80;
  }

  .tourBadgeWarn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fbbf24;
  }

  /* TRUST BAR */
  .tourTrustBar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 18px 24px;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    margin-top: 32px;
  }

  .tourTrustItem {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
  }

  .tourTrustIcon {
    font-size: 1rem;
    color: var(--accent);
  }

  /* FAQ ACCORDION */
  .tourFaq {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 820px;
  }

  .tourFaqItem {
    background: var(--background-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
  }

  .tourFaqItem:hover { border-color: var(--accent); }

  .tourFaqQuestion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 12px;
  }

  .tourFaqChevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    font-size: 0.75rem;
    color: var(--accent);
    transition: transform 0.25s ease;
  }

  .tourFaqItem.open .tourFaqChevron {
    transform: rotate(180deg);
  }

  .tourFaqAnswer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 22px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
  }

  .tourFaqItem.open .tourFaqAnswer {
    max-height: 200px;
    padding: 0 22px 18px;
  }

  /* CTA BLOCK */
  .tourCtaBlock {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 56px 24px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    margin-top: 48px;
  }

  .tourCtaBlock h2 {
    margin: 0 0 14px;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
  }

  .tourCtaBlock p {
    margin: 0 0 28px;
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 480px;
  }

  /* DIVIDER */
  .tourDivider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-subtle), transparent);
    margin: 0;
    border: none;
  }

  /* MOBILE */
  @media (max-width: 767px) {
    .tourHeroStats { gap: 20px; }
    .tourHeroStatValue { font-size: 1.4rem; }
    .tourTimeline::before { left: 19px; }
    .tourTimelineNum { width: 38px; height: 38px; font-size: 0.85rem; }
    .tourSection { padding: 44px 16px; }
    .tourPrizeGrid { grid-template-columns: 1fr 1fr; }
    .tourTrustBar { flex-direction: column; align-items: flex-start; }
    .tourEligTable th, .tourEligTable td { padding: 10px 12px; font-size: 0.82rem; }
  }

  @media (max-width: 479px) {
    .tourPrizeGrid { grid-template-columns: 1fr; }
    .tourHighlightGrid { grid-template-columns: 1fr; }
  }