:root {
    --pink:    #ff2d78;
    --cyan:    #00f5ff;
    --yellow:  #ffe600;
    --purple:  #bf00ff;
    --green:   #00ff88;
    --ink:     #060610;
    --deep:    #03030a;
    --panel:   #0a0a1a;
    --panel2:  #0f0f22;
    --text:    #e8e8ff;
    --muted:   #7070a0;
    --border:  rgba(0,245,255,0.15);
    --content-max: 1100px;   /* shared max-width for constrained text sections */
    /* Typography */
    --font-mono:    'Share Tech Mono', monospace;
    --font-display: 'Bebas Neue', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--deep);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.65;
    overflow-x: hidden;
    cursor: none;
  }

  /* ── CUSTOM SCROLLBAR ───────────────────────── */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: var(--deep);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--panel2);
    border: 1px solid var(--border);
    border-radius: 5px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
  }

  /* ── ACCESSIBILITY: FOCUS STATES ────────────── */
  *:focus-visible {
    outline: 2px dashed var(--pink);
    outline-offset: 4px;
    border-radius: 2px;
  }

  /* Disable custom cursor on touch devices */
  @media (hover: none) and (pointer: coarse) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none !important; }
  }

  /* ── CURSOR ─────────────────────────────────── */
  .cursor {
    width: 12px; height: 12px;
    background: var(--cyan);
    border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 10px var(--cyan), 0 0 30px var(--cyan);
    mix-blend-mode: screen;
    transition: transform 0.1s, background 0.2s;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: width 0.2s, height 0.2s, opacity 0.2s;
    opacity: 0.5;
  }

  /* ── SCANLINES ──────────────────────────────── */
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 9000; pointer-events: none;
    background: repeating-linear-gradient(
      to bottom,
      transparent 0, transparent 3px,
      rgba(0,0,0,0.08) 3px, rgba(0,0,0,0.08) 4px
    );
  }
  body::after {
    content: '';
    position: fixed; inset: 0; z-index: 8999; pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.7) 100%);
  }

  /* ── NAV ────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 4rem;
    height: 70px;
    background: rgba(3,3,10,0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    transition: color 0.2s, text-shadow 0.2s;
  }
  .nav-links a:hover { color: var(--cyan); text-shadow: 0 0 10px var(--cyan); }

  .nav-cta {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--pink);
    background: var(--pink);
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.2s;
    box-shadow: 0 0 14px rgba(255,45,120,0.4);
  }
  .nav-cta::before {
    content: ''; position: absolute; inset: 0;
    background: #fff;
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.22s;
  }
  .nav-cta:hover::before { transform: scaleX(1); }
  .nav-cta:hover { color: var(--ink); }
  .nav-cta span { position: relative; z-index: 1; }

  .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
  .hamburger span { width: 24px; height: 2px; background: var(--cyan); display: block; transition: all 0.3s; }

  /* ── TICKER ─────────────────────────────────── */
  .ticker {
    margin-top: 70px;
    background: var(--pink);
    padding: 0.55rem 0;
    overflow: hidden; white-space: nowrap;
  }
  .ticker-track { display: inline-flex; animation: ticker 22s linear infinite; }
  .ticker-item {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.18em;
    color: var(--ink);
    padding: 0 2rem;
  }
  .ticker-dot { color: rgba(0,0,0,0.3); padding: 0 0.25rem; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── HERO ───────────────────────────────────── */
  #home {
    display: grid;
    grid-template-columns: minmax(0, 640px) clamp(280px, 25vw, 380px);
    column-gap: 2.5rem;
    align-items: start;
    justify-content: center;
    padding: 4rem 3rem 5rem;
    position: relative;
    overflow: hidden;
  }

  /* Hero left column — all text content */
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Google rating social-proof strip */
  .hero-rating-snip {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
    animation: fadeUp 0.8s 0.38s ease both;
    opacity: 0;
  }
  .hrs-stars {
    color: #fbbf24;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    line-height: 1;
  }
  .hrs-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: var(--text);
    text-transform: uppercase;
  }
  .hrs-link {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.2s;
  }
  .hrs-link:hover { text-decoration: underline; }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 75% 50%, rgba(191,0,255,0.11) 0%, transparent 70%),
      radial-gradient(ellipse 40% 45% at 15% 75%, rgba(255,45,120,0.09) 0%, transparent 60%),
      radial-gradient(ellipse 50% 55% at 85% 15%, rgba(0,245,255,0.07) 0%, transparent 60%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0,245,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,245,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-scroll 20s linear infinite;
  }
  @keyframes grid-scroll { to { transform: translateY(60px); } }

  /* Location badge */
  .opening-badge {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--cyan);
    text-shadow: 0 0 10px rgba(0,245,255,0.35);
    animation: fadeUp 0.8s ease both;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .opening-badge::before {
    content: '';
    display: inline-block;
    width: 7px; height: 7px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 7px var(--cyan);
    flex-shrink: 0;
  }
  .hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--pink);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    animation: fadeUp 0.8s 0.1s ease both;
    opacity: 0;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 6rem);
    line-height: 0.86;
    letter-spacing: 0.02em;
    animation: fadeUp 0.8s 0.2s ease both;
    opacity: 0;
  }
  .hero-title .l1 { display: block; color: var(--cyan); text-shadow: 0 0 30px var(--cyan), 0 0 80px rgba(0,245,255,0.3); }
  .hero-title .l2 { display: block; color: var(--text); }
  .hero-title .l3 { display: block; color: var(--pink); text-shadow: 0 0 30px var(--pink); }

  .hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 500px;
    margin: 0.75rem 0 0.75rem;
    animation: fadeUp 0.8s 0.3s ease both;
    opacity: 0;
    line-height: 1.7;
  }
  .hero-sub strong { color: var(--text); font-weight: 500; }

  .hero-address {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    animation: fadeUp 0.8s 0.35s ease both;
    opacity: 0;
  }
  .hero-address a { color: inherit; text-decoration: underline; text-underline-offset: 4px; }

  .hero-actions {
    display: flex; gap: 1.2rem; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.4s ease both;
    opacity: 0;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Right column wrapper: logo above, stat grid below */
  .hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    align-self: center;
    padding-top: 1rem;
  }
  .hero-location-badges {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }

  /* Right column: floating logo — in-grid, no absolute positioning */
  .hero-logo-3d {
    position: relative;
    right: auto; top: auto;
    transform: none;
    width: 100%;
    perspective: 800px;
    animation: hero-logo-float 5s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(0,245,255,0.5)) drop-shadow(0 0 80px rgba(255,45,120,0.25));
  }
  .hero-logo-img {
    width: 100%; height: auto;
    transform-style: preserve-3d;
    transform: rotateY(0deg) rotateX(0deg);
    transition: transform 0.1s ease-out;
    display: block;
  }
  @keyframes hero-logo-float {
    0%,100% { transform: translateY(-14px); filter: drop-shadow(0 0 40px rgba(0,245,255,0.5)) drop-shadow(0 0 80px rgba(255,45,120,0.25)); }
    50%      { transform: translateY(14px);  filter: drop-shadow(0 0 60px rgba(0,245,255,0.7)) drop-shadow(0 0 100px rgba(255,45,120,0.4)); }
  }

  /* Stats 2×2 grid inside right column */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    animation: fadeUp 0.8s 0.55s ease both;
    opacity: 0;
  }
  .hero-stat {
    padding: 1.25rem 1.5rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 0.2rem;
  }
  .hero-stat:nth-child(even)  { border-right: none; }
  .hero-stat:nth-child(n + 3) { border-bottom: none; }
  .stat-num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    line-height: 1;
    color: var(--yellow);
    text-shadow: 0 0 16px rgba(255,230,0,0.5);
  }
  .stat-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: var(--muted);
    text-transform: uppercase;
  }

  /* ── BUTTONS ────────────────────────────────── */
  .btn-primary {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.4rem;
    background: var(--cyan);
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 0 22px rgba(0,245,255,0.4);
    display: inline-block;
  }
  .btn-primary:hover { background: #fff; box-shadow: 0 0 40px rgba(0,245,255,0.7); transform: translateY(-2px); }

  .btn-secondary {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.4rem;
    border: 1px solid var(--yellow);
    color: var(--yellow);
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover { background: rgba(255,230,0,0.1); box-shadow: 0 0 20px rgba(255,230,0,0.3); transform: translateY(-2px); }

  /* ── SHARED SECTION STYLES ──────────────────── */
  section { padding: 7rem 4rem 6rem; }

  .section-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.85rem;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    line-height: 0.9;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
  }
  .neon-rule {
    width: 60px; height: 2px;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    margin-bottom: 2rem;
  }

  /* ── ABOUT ──────────────────────────────────── */
  #about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    background: linear-gradient(180deg, var(--deep) 0%, var(--panel) 100%);
  }

  .about-visual { position: relative; height: 520px; }
  .about-card {
    position: absolute;
    border: 1px solid var(--border);
    background: var(--panel);
    padding: 2.2rem;
  }
  .about-card:nth-child(1) { top: 0; left: 0; right: 15%; bottom: 22%; }
  .about-card:nth-child(2) {
    bottom: 0; right: 0; left: 28%; top: 56%;
    background: var(--panel2);
    border-color: rgba(255,45,120,0.25);
  }
  .about-card:nth-child(3) {
    top: 5%; right: -2%; width: 130px; height: 130px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.4rem;
    border-color: rgba(191,0,255,0.3);
    background: rgba(10,10,26,0.9);
  }

  .about-icon {
    font-size: 4.5rem;
    display: block;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 0 14px var(--purple));
    animation: flicker 6s infinite;
  }
  @keyframes flicker {
    0%,100%{opacity:1} 91%{opacity:1} 92%{opacity:0.6} 93%{opacity:1} 95%{opacity:0.8} 96%{opacity:1}
  }

  .about-text p { color: var(--muted); margin-bottom: 1.2rem; font-size: 1.05rem; }
  .about-text p strong { color: var(--text); font-weight: 500; }

  /* Services pills */
  .services-grid {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
    margin-top: 2rem;
  }
  .service-pill {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--border);
    color: var(--muted);
    transition: all 0.2s;
    cursor: pointer;
  }
  .service-pill:hover { border-color: var(--cyan); color: var(--cyan); }
  .service-pill.active { border-color: var(--cyan); color: var(--cyan); background: rgba(0,245,255,0.06); }

  /* ── MACHINES ───────────────────────────────── */
  #machines {
    background: var(--panel);
  }
  .machines-header { margin-bottom: 3.5rem; }

  .machine-filters {
    display: flex; gap: 0.75rem; flex-wrap: wrap;
    margin-top: 1.5rem;
    justify-content: center;
  }
  .filter-btn {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border: 1px solid var(--border);
    background: none;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
  }
  .filter-btn:hover, .filter-btn.active { border-color: var(--cyan); color: var(--cyan); background: rgba(0,245,255,0.06); }
  .filter-btn.active { box-shadow: 0 0 10px rgba(0,245,255,0.15); }

  .machines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 2rem;
  }
  .machine-card {
    background: var(--panel2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
  }
  .machine-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    transform: scaleX(0);
    transition: transform 0.25s;
  }
  .machine-card:hover { background: rgba(255,255,255,0.02); }
  .machine-card:hover::before { transform: scaleX(1); }
  .machine-card[data-type="modern"]:hover  { border-color: rgba(0,245,255,0.2); }
  .machine-card[data-type="classic"]:hover { border-color: rgba(255,230,0,0.2); }
  .machine-card[data-type="mid"]:hover     { border-color: rgba(187,134,252,0.2); }
  .machine-card[data-type="arcade"]:hover  { border-color: rgba(0,255,136,0.2); }
  .machine-card[data-type="modern"]::before  { background: var(--cyan);   box-shadow: 0 0 6px rgba(0,245,255,0.5); }
  .machine-card[data-type="classic"]::before { background: var(--yellow); box-shadow: 0 0 6px rgba(255,230,0,0.5); }
  .machine-card[data-type="mid"]::before     { background: var(--purple); box-shadow: 0 0 6px rgba(187,134,252,0.5); }
  .machine-card[data-type="arcade"]::before  { background: var(--green);  box-shadow: 0 0 6px rgba(0,255,136,0.5); }
  .machine-name {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    color: var(--text);
    font-weight: 400;
    line-height: 1.3;
    margin-top: 0.35rem;
  }
  .machine-era {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .machine-tag {
    align-self: flex-start;
    width: fit-content;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 3px;
    line-height: 1.5;
    display: inline-block;
    background: rgba(191,0,255,0.15);
    color: var(--purple);
    border: 1px solid rgba(191,0,255,0.2);
    white-space: nowrap;
  }
  .machine-tag.modern { background: rgba(0,245,255,0.1); color: var(--cyan); border-color: rgba(0,245,255,0.2); }
  .machine-tag.mid { background: rgba(187,134,252,0.12); color: var(--purple); border-color: rgba(187,134,252,0.25); }
  .machine-tag.classic { background: rgba(255,230,0,0.1); color: var(--yellow); border-color: rgba(255,230,0,0.2); }
  .machine-tag.arcade { background: rgba(0,255,136,0.1); color: var(--green); border-color: rgba(0,255,136,0.2); }
  /* Coming Soon ribbon — diagonal corner */
  .machine-ribbon {
    position: absolute;
    top: 14px; right: -24px;
    width: 100px;
    background: rgba(243,156,18,0.92);
    color: #000;
    font-family: var(--font-mono);
    font-size: 0.46rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    padding: 4px 0;
    transform: rotate(35deg);
    pointer-events: none;
    z-index: 1;
  }

  /* Status pills — bottom of card */
  .machine-status-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 0.4rem;
  }
  .machine-status-pill {
    font-family: var(--font-mono);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 3px;
    white-space: nowrap;
    pointer-events: none;
  }
  .pill-sale {
    color: var(--pink);
    background: rgba(255,45,120,0.12);
    border: 1px solid rgba(255,45,120,0.35);
    box-shadow: 0 0 8px rgba(255,45,120,0.15);
  }
  .pill-rent {
    color: #00c9a7;
    background: rgba(0,201,167,0.12);
    border: 1px solid rgba(0,201,167,0.35);
    box-shadow: 0 0 8px rgba(0,201,167,0.15);
  }

  .machines-note {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-align: center;
    padding-top: 1rem;
  }

  /* ── PRICING ────────────────────────────────── */
  #pricing {
    background: linear-gradient(180deg, var(--panel) 0%, var(--deep) 100%);
  }
  .pricing-header { text-align: center; margin-bottom: 4rem; }

  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 860px;
    margin: 0 auto 2rem;
  }
  .pricing-card {
    border: 1px solid var(--border);
    background: var(--panel);
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
  }
  .pricing-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--cyan);
    box-shadow: 0 0 14px var(--cyan);
  }
  .pricing-card.featured {
    border-color: rgba(0,245,255,0.4);
    background: var(--panel2);
  }
  .pricing-card.featured::before { background: var(--pink); box-shadow: 0 0 14px var(--pink); }
  .pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
  .featured-badge {
    position: absolute; top: 1.2rem; right: 1.2rem;
    font-family: var(--font-mono);
    font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
    background: var(--pink); color: var(--ink);
    padding: 0.2rem 0.6rem; font-weight: 700;
  }
  .pricing-name {
    font-family: var(--font-display);
    font-size: 1.6rem; letter-spacing: 0.08em;
    color: var(--cyan); margin-bottom: 0.4rem;
  }
  .pricing-card.featured .pricing-name { color: var(--pink); }
  .pricing-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
  .pricing-amount {
    font-family: var(--font-display);
    font-size: 3.8rem; line-height: 1;
    color: var(--text); margin-bottom: 0.2rem;
  }
  .pricing-amount sup { font-size: 1.6rem; vertical-align: top; margin-top: 0.6rem; }
  .pricing-per {
    font-size: 0.72rem; color: var(--muted);
    letter-spacing: 0.1em; margin-bottom: 2rem;
    font-family: var(--font-mono);
  }
  .pricing-features { list-style: none; margin-bottom: 2.2rem; }
  .pricing-features li {
    font-size: 0.9rem; color: var(--muted);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex; align-items: center; gap: 0.7rem;
  }
  .pricing-features li::before {
    content: '▸'; color: var(--cyan); font-size: 0.68rem;
  }
  .pricing-card.featured .pricing-features li::before { color: var(--pink); }
  .btn-card {
    width: 100%;
    font-family: var(--font-mono);
    font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.9rem; text-align: center; text-decoration: none; display: block;
    border: 1px solid var(--cyan); color: var(--cyan);
    background: none; cursor: pointer;
    transition: all 0.2s;
  }
  .btn-card:hover { background: var(--cyan); color: var(--ink); box-shadow: 0 0 20px rgba(0,245,255,0.4); }
  .pricing-card.featured .btn-card { border-color: var(--pink); color: var(--pink); background: rgba(255,45,120,0.06); }
  .pricing-card.featured .btn-card:hover { background: var(--pink); color: var(--ink); }

  /* Private event card */
  .pricing-event-card {
    max-width: 1020px; margin: 0 auto;
    border: 1px solid rgba(255,230,0,0.2);
    background: var(--panel);
    padding: 2.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .pricing-event-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--yellow);
    box-shadow: 0 0 14px var(--yellow);
  }
  .pricing-event-name {
    font-family: var(--font-display);
    font-size: 2rem; letter-spacing: 0.08em;
    color: var(--yellow); margin-bottom: 0.4rem;
  }
  .pricing-event-desc { color: var(--muted); font-size: 0.95rem; max-width: 520px; }
  .pricing-event-price {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--yellow);
    white-space: nowrap;
    text-align: right;
  }
  .pricing-event-price span {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 300;
  }

  /* ── EVENTS / BOOKING ───────────────────────── */
  .event-types {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 2rem;
  }
  .event-type {
    background: var(--panel);
    padding: 1.25rem 1.4rem;
    display: flex; flex-direction: column; gap: 0.3rem;
  }
  .event-type-icon { font-size: 1.5rem; }
  .event-type-name {
    font-family: var(--font-display);
    font-size: 1.1rem; letter-spacing: 0.05em;
    color: var(--text);
  }
  .event-type-desc { font-size: 0.8rem; color: var(--muted); }

  .event-perks { list-style: none; }
  .event-perks li {
    font-size: 0.9rem; color: var(--muted);
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    display: flex; gap: 1rem; align-items: center;
  }
  .perk-icon { color: var(--green); font-size: 1.1rem; flex-shrink: 0; }

  /* Form */
  .form-title {
    font-family: var(--font-display);
    font-size: 1.9rem; letter-spacing: 0.05em;
    color: var(--cyan); margin-bottom: 2rem;
  }
  .form-group { margin-bottom: 1.4rem; }
  .form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 0.45rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: var(--deep);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.85rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
  }
  .form-group select option { background: var(--deep); }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 2px rgba(0,245,255,0.08), 0 0 14px rgba(0,245,255,0.1);
  }
  .form-group textarea { min-height: 100px; resize: vertical; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .btn-submit {
    width: 100%;
    font-family: var(--font-mono);
    font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 1.1rem;
    background: var(--pink); color: var(--ink);
    border: none; cursor: pointer; font-weight: 700;
    transition: all 0.2s;
    box-shadow: 0 0 20px rgba(255,45,120,0.3);
  }
  .btn-submit:hover { background: #fff; box-shadow: 0 0 40px rgba(255,45,120,0.6); }
  .form-success { display: none; text-align: center; padding: 2rem; }
  .form-success.visible { display: block; }
  .success-icon { font-size: 3rem; margin-bottom: 1rem; }
  .success-title {
    font-family: var(--font-display);
    font-size: 2rem; color: var(--green); letter-spacing: 0.05em;
  }

  /* ── GALLERY ────────────────────────────────── */
  #gallery { background: var(--panel); }
  .gallery-header { margin-bottom: 3rem; }

  /* ── CONTACT ────────────────────────────────── */
  #contact { background: var(--deep); }
  .contact-details { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
  .contact-item {
    display: flex; gap: 1.5rem; align-items: flex-start;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border);
  }
  .contact-item:first-child { padding-top: 0; }
  .contact-item:last-child { border-bottom: none; }
  .contact-icon {
    font-size: 1.4rem; color: var(--cyan);
    filter: drop-shadow(0 0 7px var(--cyan));
    flex-shrink: 0;
  }
  .contact-lbl {
    font-family: var(--font-mono);
    font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 0.3rem;
  }
  .contact-val { font-size: 1rem; color: var(--text); }
  .contact-val a { color: var(--cyan); text-decoration: none; }
  .contact-val a:hover { text-decoration: underline; }

  .hours-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0.4rem 2rem; margin-top: 0.75rem;
  }
  .hours-row { display: flex; justify-content: space-between; font-size: 0.88rem; }
  .hours-row .day { color: var(--muted); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; }
  .hours-row .time { color: var(--yellow); }

  /* Map embed */
  .map-wrap {
    width: 100%; margin-top: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 0 24px rgba(0,245,255,0.08);
    overflow: hidden;
  }
  .map-wrap iframe {
    display: block; width: 100%; height: 340px;
    filter: invert(90%) hue-rotate(180deg) saturate(0.9) brightness(0.85);
  }

  /* ── FOOTER ─────────────────────────────────── */
  footer {
    background: var(--deep);
    border-top: 1px solid var(--border);
    padding: 2.5rem 4rem;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem; letter-spacing: 0.12em;
    color: var(--cyan); text-shadow: 0 0 18px var(--cyan);
  }
  .footer-logo span { color: var(--pink); text-shadow: 0 0 18px var(--pink); }
  .footer-middle { text-align: center; }
  .footer-copy {
    font-family: var(--font-mono);
    font-size: 0.67rem; letter-spacing: 0.15em; color: var(--muted);
  }
  .footer-address {
    font-family: var(--font-mono);
    font-size: 0.62rem; letter-spacing: 0.12em; color: rgba(112,112,160,0.6);
    margin-top: 0.3rem;
  }
  .footer-socials { display: flex; gap: 1rem; }
  .footer-social {
    width: 38px; height: 38px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: var(--muted); font-family: var(--font-mono); font-size: 0.7rem;
    letter-spacing: 0.05em;
    transition: all 0.2s;
  }
  .footer-social:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 10px rgba(0,245,255,0.3); }

  /* ── REAL LOGO ──────────────────────────────── */
  .nav-logo { text-decoration: none; display: flex; align-items: center; perspective: 600px; }
  .nav-logo-img {
    height: 88px; width: auto; object-fit: contain;
    transform-style: preserve-3d;
    transform: rotateY(0deg) rotateX(0deg) scale(1);
    transition: transform 0.08s ease-out, filter 0.3s;
    filter: drop-shadow(0 0 8px rgba(0,245,255,0.4));
    cursor: pointer;
    will-change: transform;
  }

  /* ── MOBILE MENU OVERLAY ─────────────────────── */
  #mobileMenu {
    display: none;
    position: fixed; inset: 0; top: 70px;
    background: var(--deep);
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2.5rem;
    z-index: 1100;
  }
  #mobileMenu.open { display: flex; aria-hidden: false; }
  #mobileMenu ul { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 2rem; }
  #mobileMenu ul a {
    font-family: var(--font-mono);
    font-size: 1.1rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text); text-decoration: none;
    transition: color 0.2s, text-shadow 0.2s;
  }
  #mobileMenu ul a:hover { color: var(--cyan); text-shadow: 0 0 10px var(--cyan); }

  /* ── SPARKLE ────────────────────────────────── */
  .sparkle {
    position: fixed; pointer-events: none; z-index: 9500;
    border-radius: 50%;
    animation: sparkle-fade 0.8s ease forwards;
  }
  @keyframes sparkle-fade {
    0%   { opacity: 1; transform: scale(1.2) translateY(0); }
    100% { opacity: 0; transform: scale(0.1) translateY(-22px); }
  }

  /* ── PINBALL ────────────────────────────────── */
  #pinball {
    position: fixed; border-radius: 50%; pointer-events: none; z-index: 9600;
    width: 22px; height: 22px; display: none;
    background: radial-gradient(circle at 35% 35%, #fff 0%, var(--cyan) 35%, var(--purple) 75%, #000 100%);
    box-shadow: 0 0 12px var(--cyan), 0 0 28px rgba(0,245,255,0.5);
  }
  #flipper {
    position: fixed; bottom: 60px; left: 50%;
    transform: translateX(-50%) rotate(0deg);
    width: 110px; height: 16px; border-radius: 8px; display: none;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    border: 2px solid rgba(255,255,255,0.85);
    box-shadow: 0 0 20px var(--cyan), 0 0 36px rgba(255,45,120,0.5), 0 0 6px #fff;
    pointer-events: none; z-index: 9600;
    transform-origin: 20% center;
  }

  /* ── PINBALL LEADERBOARD ──────────────────────── */
  #vc-leaderboard {
    position: fixed; inset: 0;
    display: flex; align-items: center; justify-content: center;
    z-index: 100000;
    background: rgba(0,0,0,0.82);
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
  }
  #vc-leaderboard.lb-visible { opacity: 1; pointer-events: auto; cursor: pointer; }
  .lb-inner {
    background: #0a0a0f;
    border: 1px solid var(--cyan);
    box-shadow: 0 0 40px rgba(0,245,255,0.25), 0 0 80px rgba(0,245,255,0.1);
    border-radius: 12px; padding: 28px 32px 22px;
    min-width: 280px; max-width: 400px; width: 88vw;
    transform: translateY(28px) scale(0.94);
    transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1);
  }
  #vc-leaderboard.lb-visible .lb-inner { transform: translateY(0) scale(1); }
  .lb-header {
    font-family: var(--font-mono);
    font-size: 1.9rem; color: var(--pink);
    text-shadow: 0 0 20px var(--pink), 0 0 40px rgba(255,45,120,0.4);
    letter-spacing: 0.22em; text-align: center; margin-bottom: 6px;
  }
  .lb-rank-label {
    font-family: var(--font-mono);
    font-size: 0.72rem; color: var(--cyan);
    text-shadow: 0 0 8px var(--cyan);
    letter-spacing: 0.2em; text-align: center; margin-bottom: 18px;
  }
  .lb-rows { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
  .lb-row {
    display: grid; grid-template-columns: 38px 1fr auto 52px;
    align-items: center; gap: 8px;
    padding: 5px 10px; border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.8rem; color: rgba(255,255,255,0.4);
  }
  .lb-row.lb-current {
    background: rgba(255,230,0,0.07);
    border: 1px solid rgba(255,230,0,0.35);
    color: #ffe600;
    text-shadow: 0 0 8px rgba(255,230,0,0.4);
  }
  .lb-rank { text-align: right; font-size: 0.72rem; opacity: 0.6; }
  .lb-row.lb-current .lb-rank { opacity: 1; }
  .lb-score { text-align: right; font-size: 0.9rem; letter-spacing: 0.06em; }
  .lb-row.lb-current .lb-score { font-size: 1rem; }
  .lb-unit { font-size: 0.65rem; opacity: 0.5; }
  .lb-you { font-size: 0.65rem; color: var(--pink); text-shadow: 0 0 6px var(--pink); letter-spacing: 0.1em; }
  .lb-dismiss {
    font-family: var(--font-mono);
    font-size: 0.62rem; color: rgba(255,255,255,0.28);
    letter-spacing: 0.22em; text-align: center;
  }

  /* ── CAROUSEL ───────────────────────────────── */
  .carousel { position: relative; overflow: hidden; border: 1px solid var(--border); }
  .carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
  }
  .carousel-slide { min-width: 100%; position: relative; overflow: hidden; }
  .carousel-slide img {
    width: 100%; height: 500px; object-fit: cover; display: block;
    transition: transform 0.6s ease;
  }
  .carousel-slide:hover img { transform: scale(1.03); }
  .carousel-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(to top, rgba(3,3,10,0.95) 0%, transparent 100%);
    font-family: var(--font-mono);
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--cyan); text-shadow: 0 0 10px var(--cyan);
  }
  .carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px;
    background: rgba(3,3,10,0.75); border: 1px solid var(--border);
    color: var(--cyan); font-size: 2rem; cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(8px); transition: all 0.2s;
  }
  .carousel-btn:hover { background: rgba(0,245,255,0.15); border-color: var(--cyan); box-shadow: 0 0 14px rgba(0,245,255,0.3); }
  .carousel-prev { left: 1rem; }
  .carousel-next { right: 1rem; }
  .carousel-dots { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 10; }
  .carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.3); border: 1px solid rgba(0,245,255,0.4);
    cursor: pointer; transition: all 0.2s;
  }
  .carousel-dot.active { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

  /* ── LIGHTBOX ───────────────────────────────── */
  #lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.92);
    z-index: 9800; display: none;
    align-items: center; justify-content: center;
    padding-top: 70px;
    backdrop-filter: blur(10px);
  }
  #lightbox.open { display: flex; }
  #lightbox img { max-width: 90vw; max-height: calc(100dvh - 90px); object-fit: contain; border: 1px solid var(--border); }
  #lightbox-close {
    position: absolute; top: 76px; right: 2rem;
    font-size: 2.2rem; color: var(--muted); cursor: pointer;
    font-family: var(--font-mono); transition: color 0.2s; line-height: 1;
  }
  #lightbox-close:hover { color: var(--cyan); }

  /* ── SCROLL REVEAL ──────────────────────────── */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── Machine Modal ──────────────────────────────────────── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 900;
    background: rgba(0,0,0,0.82);
    display: flex; align-items: center; justify-content: center;
    padding: 76px 1rem 1rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.22s ease;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }

  .modal-card {
    background: var(--panel);
    border: 1px solid rgba(0,245,255,0.18);
    border-radius: 12px;
    width: 100%; max-width: 500px;
    max-height: calc(100dvh - 90px);
    display: flex; flex-direction: column;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 50px rgba(0,245,255,0.1), 0 20px 60px rgba(0,0,0,0.6);
    transform: scale(0.96);
    transition: transform 0.22s ease;
  }
  .modal-overlay.open .modal-card { transform: scale(1); }

  .modal-close {
    position: absolute; top: 12px; right: 14px; z-index: 2;
    background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1);
    color: var(--muted); font-size: 1rem; width: 28px; height: 28px;
    border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: color 0.2s, border-color 0.2s;
  }
  .modal-close:hover { color: var(--cyan); border-color: rgba(0,245,255,0.4); }

  .modal-bg {
    width: 100%; height: 190px;
    flex-shrink: 0;
    background: linear-gradient(140deg, #0c0a1e 0%, #140d28 60%, #0a1218 100%);
    background-size: cover; background-position: center top;
    border-radius: 12px 12px 0 0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
  }
  .modal-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--panel) 100%);
  }
  .modal-bg-name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2.4rem);
    letter-spacing: 0.07em; line-height: 1.2;
    color: rgba(255,255,255,0.09);
    text-align: center; padding: 1rem;
    text-shadow: 0 0 40px rgba(0,245,255,0.15);
    user-select: none;
  }

  .modal-body { padding: 1rem 1.25rem 1.25rem; overflow-y: auto; flex: 1; }

  .modal-era-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 4px; border: 1px solid;
    margin-bottom: 0.6rem;
  }
  .modal-era-tag.classic { color: var(--yellow); border-color: rgba(255,230,0,0.3); background: rgba(255,230,0,0.07); }
  .modal-era-tag.mid     { color: var(--purple); border-color: rgba(187,134,252,0.3); background: rgba(187,134,252,0.07); }
  .modal-era-tag.modern  { color: var(--cyan);   border-color: rgba(0,245,255,0.3);   background: rgba(0,245,255,0.07); }
  .modal-era-tag.arcade  { color: var(--green);  border-color: rgba(0,255,136,0.3);   background: rgba(0,255,136,0.07); }

  .modal-title {
    font-family: var(--font-display);
    font-size: 2rem; letter-spacing: 0.04em; line-height: 1.05;
    color: var(--text); margin: 0 0 0.3rem;
  }
  .modal-subtitle {
    font-family: var(--font-mono);
    font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted); margin: 0 0 1rem;
  }
  .modal-desc {
    font-size: 0.88rem; color: rgba(255,255,255,0.65);
    line-height: 1.65; margin: 0 0 1rem;
  }
  .modal-features {
    list-style: none; padding: 0; margin: 0 0 1.25rem;
    display: flex; flex-wrap: wrap; gap: 0.4rem;
  }
  .modal-features li {
    font-family: var(--font-mono);
    font-size: 0.62rem; letter-spacing: 0.08em;
    color: var(--cyan); background: rgba(0,245,255,0.06);
    border: 1px solid rgba(0,245,255,0.14);
    padding: 4px 10px; border-radius: 4px;
  }
  .modal-pinside-link {
    font-family: var(--font-mono);
    font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--pink); text-decoration: none;
    transition: color 0.2s;
  }
  .modal-pinside-link:hover { color: var(--cyan); }
  .machine-card { cursor: pointer; }

  /* ── MODAL FOR SALE BANNER ───────────────────── */
  .modal-sale-banner {
    display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
    background: rgba(255,45,120,0.08);
    border: 1px solid rgba(255,45,120,0.35);
    border-radius: 6px;
    padding: 0.6rem 1rem;
    margin: 0.4rem 0 0.9rem;
  }
  .modal-sale-label {
    font-family: var(--font-mono);
    font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--pink);
    text-shadow: 0 0 10px rgba(255,45,120,0.5);
    font-weight: 700;
  }
  .modal-sale-price {
    font-family: var(--font-display);
    font-size: 1.5rem; letter-spacing: 0.06em; line-height: 1;
    color: var(--pink);
    text-shadow: 0 0 16px rgba(255,45,120,0.4);
  }
  .modal-rent-banner {
    background: rgba(0,201,167,0.08);
    border-color: rgba(0,201,167,0.35);
    margin-top: 0.4rem;
  }
  .modal-rent-banner .modal-sale-label {
    color: #00c9a7;
    text-shadow: 0 0 10px rgba(0,201,167,0.5);
  }
  .modal-rent-banner .modal-sale-price {
    color: #00c9a7;
    text-shadow: 0 0 16px rgba(0,201,167,0.4);
  }

  /* ── MOBILE ─────────────────────────────────── */
  @media (max-width: 960px) {
    /* Nav */
    nav { padding: 0 1.5rem; height: 60px; }
    .nav-logo-img { height: 44px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .nav-cta { display: none; }
    #mobileMenu { top: 60px; }
    #mobileMenu .nav-cta {
      display: inline-block;
      background: var(--yellow); border-color: var(--yellow); color: var(--ink);
      font-size: 0.88rem; padding: 0.9rem 2.4rem; font-weight: 700;
      box-shadow: 0 0 24px rgba(255,230,0,0.45); margin-top: 0.5rem;
    }
    #mobileMenu .nav-cta::before { background: #fff; }

    /* General Sections */
    section { padding: 4.5rem 1.25rem 3.5rem; }
    .section-title { font-size: 3.5rem; line-height: 1; }
    
    /* Hero */
    #home { grid-template-columns: 1fr; padding: 2rem 1.25rem 4rem; align-items: flex-start; }
    .hero-content { padding-bottom: 0; }
    .hero-right { width: 100%; margin-top: 1.5rem; }
    .hero-logo-3d { margin: 0 auto 1rem; width: 180px; animation: none; }
    .hero-title { font-size: clamp(3.5rem, 14vw, 5rem); line-height: 0.9; }
    .hero-sub { margin: 1.5rem 0 2rem; font-size: 1rem; }
    .hero-actions { display: flex; flex-direction: column; width: 100%; gap: 1rem; }
    .btn-primary, .btn-secondary { text-align: center; width: 100%; }

    .hero-stats { border-radius: 0; border: none; border-top: 1px solid var(--border); }
    .hero-stat { padding: 1.5rem 1rem; text-align: center; border-bottom: 1px solid var(--border); }
    .hero-stat:nth-child(n + 3) { border-bottom: none; }
    .stat-num { font-size: 2.2rem; }

    /* About (Fixes Overlap) */
    #about { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { height: auto; display: flex; flex-direction: column; gap: 1rem; }
    .about-card { position: relative !important; inset: auto !important; width: 100% !important; height: auto !important; padding: 1.5rem !important; transform: none !important; }
    .about-card:nth-child(1), .about-card:nth-child(2) { background: var(--panel2); }
    .about-card:nth-child(3) { display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 1.5rem; padding: 1.5rem !important; }

    /* Machines */
    .machines-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .machine-filters { justify-content: center; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; max-width: 100%; margin: 0; }
    .pricing-card { padding: 2rem 1.5rem; }
    .pricing-event-card { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 1.5rem; text-align: center; }
    .pricing-event-price { text-align: center; font-size: 2.2rem; }
    .pricing-events-grid { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr; }
    .events-list { grid-template-columns: 1fr; }

    /* Booking */
    .event-types { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .booking-form { padding: 1.5rem; }

    /* Gallery */
    .carousel-slide img { height: 260px; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-item { flex-direction: column; gap: 0.5rem; padding: 1.25rem 0; }
    .hours-grid { grid-template-columns: 1fr; gap: 0.5rem; }
    .contact-form { padding: 1.5rem; }
    .map-wrap iframe { height: 280px; }

    /* Footer */
    footer { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; gap: 1.5rem; }
    .footer-socials { justify-content: center; }

    /* Modals */
    .modal-card { max-width: 92%; max-height: calc(100dvh - 90px); }
    .modal-bg { height: 140px; }
    .modal-bg-name { font-size: 1.8rem; }
    .modal-title { font-size: 1.6rem; }
    .modal-body { padding: 0.875rem 1rem; }
  }

  /* ── EXTRA SMALL MOBILE (Under 480px) ───────── */
  @media (max-width: 480px) {
    .section-title { font-size: 2.8rem; }
    .hero-stat { flex: 1 1 100%; border-right: none; }
    
    .machines-grid { grid-template-columns: 1fr; } /* Stack machines to 1 per row */
    .machine-card { padding: 0.9rem; }
    
    .btn-primary, .btn-secondary, .btn-submit { padding: 0.9rem; font-size: 0.75rem; }
  }
  /* ── PRIVATE EVENTS GRID (2-col) ─────────────── */

  .pricing-events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: var(--content-max);
    margin: 0 auto 2rem;
  }

  /* ── ADD-ONS BLOCK ───────────────────────────── */
  .pricing-addons {
    max-width: var(--content-max); margin: 0 auto 2rem;
    border: 1px solid rgba(255,230,0,0.1);
    background: var(--panel);
    padding: 2rem 2.5rem;
    position: relative;
  }
  .pricing-addons::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--yellow), var(--pink));
    opacity: 0.5;
  }
  .pricing-addons-title {
    font-family: var(--font-display);
    font-size: 1.3rem; letter-spacing: 0.1em;
    color: var(--yellow); margin-bottom: 1.25rem;
  }
  .addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .addon-item {
    display: flex; flex-direction: column; gap: 0.3rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    background: var(--panel2);
  }
  .addon-icon { font-size: 1.3rem; }
  .addon-name {
    font-family: var(--font-mono);
    font-size: 0.65rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text);
  }
  .addon-price {
    font-family: var(--font-display);
    font-size: 1.3rem; color: var(--yellow);
  }

  /* ── EVENTS SECTION ──────────────────────────── */
  .events-section { margin-bottom: 4rem; }
  .events-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }
  .event-card {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 1.4rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .event-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
  .event-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--cyan);
  }
  .event-card-type {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 3px 8px; border-radius: 3px; border: 1px solid;
    margin-bottom: 0.75rem;
  }
  .event-card-type.league-night,
  .single-event-type.league-night  { color: var(--cyan);   border-color: rgba(0,245,255,0.3);   background: rgba(0,245,255,0.06); }
  .event-card-type.tournament,
  .single-event-type.tournament    { color: var(--pink);   border-color: rgba(255,45,120,0.3);   background: rgba(255,45,120,0.06); }
  .event-card-type.special-event,
  .single-event-type.special-event { color: var(--yellow); border-color: rgba(255,230,0,0.3);   background: rgba(255,230,0,0.06); }
  .event-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem; letter-spacing: 0.04em;
    color: var(--text); margin: 0 0 0.3rem;
  }
  .event-card-datetime {
    font-family: var(--font-mono);
    font-size: 0.65rem; letter-spacing: 0.12em;
    color: var(--cyan); margin: 0 0 0.75rem;
    text-transform: uppercase;
  }
  .event-card-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.55; margin: 0; }

  /* ── EVENT CARD TOP LINE COLOR VARIANTS ─────── */
  .event-card.tournament::before  { background: var(--pink);   }
  .event-card.special-event::before { background: var(--yellow); }

  @media (max-width: 960px) {
    .pricing-events-grid { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr; }
    .events-list { grid-template-columns: 1fr 1fr; }
    .addon-item { flex-direction: row; align-items: center; gap: 1rem; }
  }
  @media (max-width: 480px) {
    .events-list { grid-template-columns: 1fr; }
  }

/* ═══════════════════════════════════════════════════════════════════════════
   MACHINE STATUS BADGES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 780px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--cyan); }

.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--cyan);
  transition: transform 0.3s ease;
  font-family: monospace;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-answer:not([hidden]) {
  display: block;
}
.faq-answer[hidden] {
  display: block;   /* override native hidden so transition works */
  max-height: 0;
  visibility: hidden;
}
.faq-item.is-open .faq-answer {
  visibility: visible;
}

.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-answer-inner p { margin: 0 0 0.75em; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner a { color: var(--cyan); }
.faq-answer-inner strong { color: var(--text); }

/* Hours note inline */
.hours-note {
  font-size: 0.75em;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 600px) {
  .faq-question { font-size: 0.82rem; }
}

/* ── FAQ SECTION LAYOUT ──────────────────────── */
#faq {
  max-width: 1100px;
  margin: 0 auto;
}
/* Ensure answers can expand tall enough */
.faq-item.is-open .faq-answer {
  max-height: 1200px;
  visibility: visible;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CAPACITY BADGE
   ═══════════════════════════════════════════════════════════════════════════ */
.capacity-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid;
  margin: 0.35rem 0 0;
}
.capacity-badge.cap-open {
  color: var(--green);
  border-color: rgba(0,255,136,0.4);
  background: rgba(0,255,136,0.07);
}
.capacity-badge.cap-getting-full {
  color: var(--yellow);
  border-color: rgba(255,230,0,0.4);
  background: rgba(255,230,0,0.07);
}
.capacity-badge.cap-at-capacity {
  color: var(--pink);
  border-color: rgba(255,45,120,0.4);
  background: rgba(255,45,120,0.07);
}
.capacity-badge.cap-closed {
  color: var(--muted);
  border-color: rgba(112,112,160,0.3);
  background: rgba(112,112,160,0.06);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PARTY PACKAGE CALCULATOR
   ═══════════════════════════════════════════════════════════════════════════ */
.pkg-calculator {
  max-width: 860px;
  margin: 2.5rem auto 1rem;
  background: var(--panel);
  border: 1px solid rgba(0,245,255,0.14);
  padding: 2rem 2.5rem 1.75rem;
  position: relative;
}
.pkg-calculator::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0.6;
}
.pkg-calc-title {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 0.08em;
  color: var(--cyan); margin-bottom: 1.5rem;
}
.pkg-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.pkg-calc-label-text {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.6rem;
}
.pkg-calc-slider-wrap {
  display: flex; align-items: center; gap: 1rem;
}
.pkg-calc-slider-wrap input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  background: var(--panel2);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.pkg-calc-slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  cursor: pointer;
}
.pkg-calc-guests-val {
  font-family: var(--font-mono);
  font-size: 0.8rem; color: var(--cyan);
  white-space: nowrap; min-width: 70px;
}
.pkg-calc-hours {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.pkg-calc-hour {
  padding: 0.4rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.08em;
  background: var(--panel2);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.15s;
}
.pkg-calc-hour:hover { color: var(--text); border-color: rgba(0,245,255,0.3); }
.pkg-calc-hour.active {
  color: var(--cyan); border-color: var(--cyan);
  background: rgba(0,245,255,0.08);
  box-shadow: 0 0 10px rgba(0,245,255,0.15);
}
.pkg-calc-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--panel2);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.pkg-calc-package {
  font-family: var(--font-display);
  font-size: 1.4rem; letter-spacing: 0.04em;
  color: var(--text);
}
.pkg-calc-estimate {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
}
.pkg-calc-est-label {
  font-family: var(--font-mono);
  font-size: 0.58rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
}
.pkg-calc-amount {
  font-family: var(--font-display);
  font-size: 2.2rem; color: var(--cyan);
  line-height: 1; text-shadow: 0 0 20px rgba(0,245,255,0.4);
}
.pkg-calc-note {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: var(--muted);
}
.pkg-calc-disclaimer {
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.08em;
  color: var(--muted); text-align: center;
}
.pkg-calc-disclaimer a { color: var(--cyan); }

@media (max-width: 640px) {
  .pkg-calculator { padding: 1.5rem 1.25rem; }
  .pkg-calc-grid { grid-template-columns: 1fr; }
  .pkg-calc-result { flex-direction: column; align-items: flex-start; }
  .pkg-calc-estimate { align-items: flex-start; }
}

/* Fixed pricing summary (replaces slider calculator) */
.pkg-fixed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.pkg-fixed-card {
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
}
.pkg-fixed-card--buyout { border-color: rgba(255,45,120,0.3); }
.pkg-fixed-name {
  font-family: var(--font-display);
  font-size: 1.3rem; letter-spacing: 0.08em;
  color: var(--cyan); margin-bottom: 0.2rem;
}
.pkg-fixed-card--buyout .pkg-fixed-name { color: var(--pink); }
.pkg-fixed-guests {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: var(--muted);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.pkg-fixed-price {
  font-family: var(--font-display);
  font-size: 2.8rem; letter-spacing: 0.04em;
  color: var(--cyan); line-height: 1; margin-bottom: 0.3rem;
}
.pkg-fixed-price span { font-size: 1rem; color: var(--muted); letter-spacing: 0; font-family: 'DM Sans', sans-serif; }
.pkg-fixed-card--buyout .pkg-fixed-price { color: var(--pink); }
.pkg-fixed-note {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: var(--muted); letter-spacing: 0.08em;
}
@media (max-width: 600px) {
  .pkg-fixed-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVIEWS CAROUSEL
   ═══════════════════════════════════════════════════════════════════════════ */
#reviews { background: linear-gradient(180deg, var(--panel) 0%, var(--deep) 100%); overflow: hidden; }
.reviews-header { text-align: center; margin-bottom: 2.5rem; }
.reviews-google-bar {
  display: flex; align-items: center; justify-content: center; gap: 0.85rem;
  margin-top: 1rem;
}
.rgbar-stars {
  color: #fbbf24;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
.rgbar-avg {
  font-family: var(--font-display);
  font-size: 2.2rem; letter-spacing: 0.04em;
  color: var(--yellow); line-height: 1;
}
.rgbar-label {
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.18em;
  color: var(--muted); text-transform: uppercase;
}
.reviews-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  margin-bottom: 2.5rem;
}
.reviews-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: reviews-scroll 38s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  width: 300px;
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: rgba(0,245,255,0.3); }
.review-stars { color: #fbbf24; font-size: 0.95rem; letter-spacing: 0.1em; }
.review-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.review-meta { display: flex; align-items: center; margin-top: auto; }
.review-name {
  font-family: var(--font-mono);
  font-size: 0.65rem; letter-spacing: 0.14em;
  color: var(--cyan); text-transform: uppercase;
}
.review-via {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--muted);
  margin-left: 0.4rem;
}
.reviews-cta { text-align: center; margin-top: 0.5rem; }
@media (max-width: 640px) {
  .review-card { width: 260px; }
  .reviews-track { gap: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WAIVER MODAL
   ═══════════════════════════════════════════════════════════════════════════ */
.waiver-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(3,3,10,0.88);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 76px 1.5rem 1.5rem;
}
.waiver-modal[hidden] { display: none; }

.waiver-modal-box {
  background: var(--panel);
  border: 1px solid rgba(0,245,255,0.2);
  max-width: 560px; width: 100%;
  max-height: calc(100dvh - 90px);
  display: flex; flex-direction: column;
  box-shadow: 0 0 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,245,255,0.08);
}
.waiver-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.waiver-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 0.06em; color: var(--cyan);
}
.waiver-modal-close {
  background: none; border: none;
  color: var(--muted); font-size: 1.1rem;
  cursor: pointer; padding: 4px 8px;
  transition: color 0.15s;
}
.waiver-modal-close:hover { color: var(--text); }

.waiver-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
  display: flex; flex-direction: column; gap: 1rem;
}
.waiver-modal-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.waiver-modal-body p strong { color: var(--text); display: block; margin-bottom: 2px; }
.waiver-fine-print {
  font-family: var(--font-mono);
  font-size: 0.7rem !important;
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
}

.waiver-modal-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: right;
}

/* Waiver checkbox in booking form */
.waiver-check-group { margin-bottom: 0.5rem; }
.waiver-checkbox-label {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.85rem; color: var(--muted);
  cursor: pointer;
}
.waiver-checkbox-label input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0; margin-top: 2px;
  accent-color: var(--cyan);
  cursor: pointer;
}
.waiver-link {
  background: none; border: none; padding: 0;
  color: var(--cyan); font-size: inherit;
  font-family: inherit; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}

/* ── HERO BOOK BUTTON ───────────────────────── */
.hero-book-btn {
  background: var(--pink);
  border: 1px solid var(--pink);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 0 14px rgba(255,45,120,0.4);
  position: relative;
  overflow: hidden;
  transition: color 0.2s;
}
.hero-book-btn::before {
  content: ''; position: absolute; inset: 0;
  background: #fff;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s;
}
.hero-book-btn:hover::before { transform: scaleX(1); }
.hero-book-btn:hover { color: var(--ink); }
.hero-book-btn span { position: relative; z-index: 1; }

/* ── PILL MODAL ─────────────────────────────── */
.pill-modal-card { max-width: 520px; border-color: rgba(0,245,255,0.25); }
.pill-modal-inner { padding: 1.25rem 1.5rem; overflow-y: auto; flex: 1; }
.pill-modal-title {
  font-family: var(--font-display);
  font-size: 2rem; letter-spacing: 0.05em;
  color: var(--cyan); margin-bottom: 1rem;
}
.pill-modal-body { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }
.pill-modal-body p { margin-bottom: 0.75rem; }
.pill-modal-body p:last-child { margin-bottom: 0; }
.pill-modal-body strong { color: var(--text); }
.pill-modal-body ul { list-style: none; margin: 0.5rem 0; padding: 0; }
.pill-modal-body ul li {
  padding: 0.3rem 0;
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.pill-modal-body ul li::before {
  content: '▸'; color: var(--cyan); font-size: 0.68rem;
  flex-shrink: 0; margin-top: 4px;
}
.pill-popup-link {
  display: inline-block; margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pink); text-decoration: none;
}
.pill-popup-link:hover { color: var(--cyan); }

/* ── FORM POPUP MODALS ──────────────────────── */
.form-modal-card {
  max-width: 620px;
  border-color: rgba(0,245,255,0.2);
}
.form-modal-inner { padding: 1.25rem 1.5rem 1.5rem; overflow-y: auto; flex: 1; }

/* ── BOOKING SINGLE-COLUMN ──────────────────── */
.booking-info-full { max-width: 860px; margin: 0 auto; }
.booking-info-full h3 {
  font-family: var(--font-display);
  font-size: 1.9rem; letter-spacing: 0.05em;
  color: var(--yellow); margin-bottom: 1rem;
}
.booking-info-full p { color: var(--muted); margin-bottom: 1.5rem; }
.booking-cta-btn { margin-top: 2rem; border: none; cursor: pointer; }

.pkg-calc-book-link {
  background: none; border: none;
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.08em;
  color: var(--cyan); cursor: pointer;
  padding: 0; text-decoration: underline; text-underline-offset: 2px;
}
.pkg-calc-book-link:hover { color: var(--text); }

/* ── CONTACT SINGLE-COLUMN ──────────────────── */
.contact-info-full { max-width: 860px; margin: 0 auto; }
.contact-cta-btn { margin-top: 2rem; border: none; cursor: pointer; }


/* ── MODAL PHOTO CAROUSEL ───────────────────── */
.modal-photos {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #000;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal-photo-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}
.modal-photo-slide { flex: 0 0 100%; height: 100%; }
.modal-photo-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-photo-prev,
.modal-photo-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff; border: none;
  font-size: 2rem; padding: 0.5rem 0.9rem;
  cursor: pointer; z-index: 2;
  transition: background 0.2s;
  line-height: 1;
}
.modal-photo-prev:hover,
.modal-photo-next:hover { background: rgba(0,0,0,0.85); }
.modal-photo-prev { left: 0; border-radius: 0 4px 4px 0; }
.modal-photo-next { right: 0; border-radius: 4px 0 0 4px; }

@media (max-width: 960px) {
  .modal-photos { height: 160px; }
  .form-modal-inner { padding: 1rem; }
  .pill-modal-inner { padding: 1rem; }
  .booking-info-full, .contact-info-full { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LAYOUT CONSISTENCY & PERFORMANCE (v1.1.6)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── FAQ header alignment ────────────────────── */
/* Center the section label/title to match the centered .faq-list below */
#faq .section-label,
#faq .section-title {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ tablet/mobile padding — match standard section rhythm */
@media (max-width: 960px) {
  #faq { padding: 4.5rem 1.25rem 3.5rem; }
}
@media (max-width: 600px) {
  #faq { padding: 3.5rem 1.25rem; }
}

/* ── Pricing header centering ────────────────── */
/* Constrain the header to match the card grid below it */
.pricing-header { max-width: var(--content-max); margin-left: auto; margin-right: auto; }

/* ── GPU compositing for CSS animations ──────── */
/* Promote animated tracks to own compositor layer for smoother playback */
.ticker-track    { will-change: transform; }
.reviews-track   { will-change: transform; }

/* ── Pricing event card — full-width button ──── */
.pricing-event-btn { grid-column: 1 / -1; margin-top: 0.75rem; }

/* ── For Sale filter button ───────────────────── */
.filter-btn--sale {
  border-color: var(--pink);
  color: var(--ink);
  background: var(--pink);
  font-weight: 700;
  box-shadow: 0 0 12px rgba(255,45,120,0.35);
}
.filter-btn--sale:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
  box-shadow: 0 0 20px rgba(255,45,120,0.5);
}
.filter-btn--sale.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--ink);
  box-shadow: 0 0 14px rgba(255,45,120,0.5);
}

/* ── For Rent filter button ───────────────────── */
.filter-btn--rent {
  border-color: #00c9a7;
  color: var(--ink);
  background: #00c9a7;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(0,201,167,0.35);
}
.filter-btn--rent:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
  box-shadow: 0 0 20px rgba(0,201,167,0.5);
}
.filter-btn--rent.active {
  background: #00c9a7;
  border-color: #00c9a7;
  color: var(--ink);
  box-shadow: 0 0 14px rgba(0,201,167,0.5);
}

/* ── Clickable sale/rent banners ──────────────── */
.modal-sale-banner--clickable {
  cursor: pointer;
  transition: filter 0.15s, transform 0.15s;
  user-select: none;
}
.modal-sale-banner--clickable:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}
.modal-sale-banner--clickable.is-active {
  filter: brightness(1.2);
}
.modal-enquire-hint {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
  white-space: nowrap;
}
.modal-sale-banner--clickable:hover .modal-enquire-hint { color: rgba(255,255,255,0.85); }

/* ── Slide-out interest form ──────────────────── */
.modal-interest-form-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.35s ease;
  margin-top: 0;
}
.modal-interest-form-wrap.is-open {
  max-height: 600px;
  opacity: 1;
  margin-top: 0.75rem;
}

/* ── Machine interest form ────────────────────── */
.modal-interest-form-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.modal-interest-fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.modal-interest-input {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.45rem 0.7rem;
  border-radius: 3px;
  width: 100%;
  outline: none;
}
.modal-interest-input:focus { border-color: var(--cyan); }
.modal-interest-textarea { min-height: 80px; resize: vertical; }
.modal-interest-submit {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  border: 1px solid var(--cyan);
  color: var(--ink);
  background: var(--cyan);
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
}
.modal-interest-submit:hover { background: #fff; border-color: #fff; }
.modal-interest-submit:disabled { opacity: 0.5; cursor: default; }
.modal-interest-back {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--border);
  background: none;
  color: var(--muted);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.modal-interest-back:hover { color: var(--text); border-color: var(--text); }
.modal-interest-status {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  margin-top: 0.5rem;
}
.modal-interest-status.success { color: var(--green); }
.modal-interest-status.error   { color: var(--pink); }

/* ── Pricing section add-ons disclaimer ──────── */
.pricing-disclaimer {
  text-align: center;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

/* ── Global alignment consistency pass ───────── */
/* Machines header — center like pricing/gallery  */
.machines-header {
  text-align: center;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

/* Gallery header — center like pricing/machines  */
.gallery-header {
  text-align: center;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

/* Events section — constrain + center            */
.events-section {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}
.events-section .section-label,
.events-section .section-title { text-align: center; }
.events-section .neon-rule { margin-left: auto; margin-right: auto; }

/* Booking info — center header elements          */
.booking-info-full .section-label,
.booking-info-full .section-title { text-align: center; }
.booking-info-full .neon-rule { margin-left: auto; margin-right: auto; }

/* Contact info — center header elements          */
.contact-info-full .section-label,
.contact-info-full .section-title { text-align: center; }
.contact-info-full .neon-rule { margin-left: auto; margin-right: auto; }

/* ── NEWS & UPDATES ──────────────────────────── */
.news-header {
  text-align: center;
  max-width: var(--content-max);
  margin: 0 auto 4rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--content-max);
  margin: 0 auto;
}

.news-card {
  background: var(--panel);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,245,255,0.08);
}
.news-card-thumb { display: block; overflow: hidden; }
.news-card-thumb img {
  width: 100%; height: 200px; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.news-card:hover .news-card-thumb img { transform: scale(1.04); }

.news-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }

.news-card-date {
  font-family: var(--font-mono);
  font-size: 0.65rem; letter-spacing: 0.18em;
  color: var(--cyan); text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.news-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem; letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.news-card-title a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.news-card-title a:hover { color: var(--cyan); }

.news-card-excerpt { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }

.news-card-link {
  font-family: var(--font-mono);
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cyan); text-decoration: none;
  transition: text-shadow 0.2s; align-self: flex-start;
}
.news-card-link:hover { text-shadow: 0 0 8px var(--cyan); }

@media (max-width: 960px) {
  #news { padding: 4.5rem 1.5rem; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  #news { padding: 3.5rem 1.25rem; }
  .news-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   DEFINITIVE ALIGNMENT — overrides everything above
   Section labels, titles, neon rules centred globally.
   Only #about stays left-aligned (intentional 2-col layout).
   ═══════════════════════════════════════════════ */
.section-label,
.section-title { text-align: center; }

.neon-rule { margin-left: auto; margin-right: auto; }

/* Exception: about section is a 2-column layout — keep left */
#about .section-label,
#about .section-title { text-align: left; }
#about .neon-rule { margin-left: 0; margin-right: 0; }

/* ═══════════════════════════════════════════════════════════════════════
   SINGLE POST / EVENT PAGE
   ═══════════════════════════════════════════════════════════════════════ */

.single-page {
  background: var(--deep);
  min-height: 100vh;
  padding: 6rem 1.5rem 4rem;
}

.single-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
}

/* ── Back link ── */
.single-back {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 2rem;
}
.single-back:hover { color: var(--cyan); }
.single-back--bottom {
  margin-top: 3rem;
  margin-bottom: 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ── Header area ── */
.single-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.single-header .section-label { text-align: center; }
.single-header .section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
}

/* ── Date ── */
.single-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1rem;
}

/* ── Event meta (type badge + date) ── */
.single-event-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.single-event-type {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid;
  border-radius: 4px;
}
.single-event-datetime {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Featured image ── */
.single-featured-img {
  margin-bottom: 2.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.single-featured-img img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Content area (the_content) ── */
.single-content {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}
.single-content h1,
.single-content h2,
.single-content h3,
.single-content h4 {
  font-family: var(--font-display);
  color: #fff;
  letter-spacing: 0.04em;
  margin: 2rem 0 0.75rem;
  line-height: 1.2;
}
.single-content h2 { font-size: 1.8rem; }
.single-content h3 { font-size: 1.4rem; }
.single-content h4 { font-size: 1.15rem; }
.single-content p {
  margin-bottom: 1.25rem;
  color: var(--text);
}
.single-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: text-shadow 0.2s;
}
.single-content a:hover { text-shadow: 0 0 8px var(--cyan); }
.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1rem 0;
}
.single-content ul,
.single-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.single-content li { margin-bottom: 0.4rem; }
.single-content blockquote {
  border-left: 3px solid var(--cyan);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--panel);
  border-radius: 0 6px 6px 0;
  color: var(--text);
  font-style: italic;
}
.single-content figure {
  margin: 1.5rem 0;
}
.single-content figcaption {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.5rem;
}
.single-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}
.single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.single-content th,
.single-content td {
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
}
.single-content th {
  background: var(--panel);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Gutenberg block support for dark theme ── */

/* Images */
.single-content .wp-block-image { margin: 1.5rem 0; }
.single-content .wp-block-image img { border-radius: 6px; max-width: 100%; height: auto; }
.single-content .wp-block-image figcaption { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 0.4rem; }

/* Gallery */
.single-content .wp-block-gallery { gap: 0.5rem; margin: 1.5rem 0; }
.single-content .wp-block-gallery img { border-radius: 4px; }

/* Embed / video */
.single-content .wp-block-embed { margin: 1.5rem 0; }
.single-content .wp-block-embed iframe,
.single-content .wp-block-embed video { max-width: 100%; border-radius: 6px; }
.single-content .wp-block-video video { width: 100%; border-radius: 6px; }

/* Separator */
.single-content .wp-block-separator,
.single-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* Columns */
.single-content .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.single-content .wp-block-column { flex: 1; min-width: 180px; }

/* Buttons */
.single-content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.single-content .wp-block-button__link {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  background: var(--cyan);
  color: var(--deep) !important;
  border-radius: 4px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.9rem;
  transition: filter 0.2s;
}
.single-content .wp-block-button__link:hover { filter: brightness(1.2); }
.single-content .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  border: 2px solid var(--cyan);
  color: var(--cyan) !important;
}

/* Quote */
.single-content .wp-block-quote {
  border-left: 3px solid var(--cyan);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: rgba(0,245,255,0.04);
  border-radius: 0 6px 6px 0;
}
.single-content .wp-block-quote p { color: var(--muted); font-style: italic; }
.single-content .wp-block-quote cite,
.single-content .wp-block-quote footer { font-size: 0.8rem; color: var(--muted); display: block; margin-top: 0.5rem; }

/* Pullquote */
.single-content .wp-block-pullquote {
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  margin: 2rem 0;
}
.single-content .wp-block-pullquote blockquote p { font-size: 1.2rem; font-style: italic; color: var(--text); }
.single-content .wp-block-pullquote cite { font-size: 0.8rem; color: var(--muted); }

/* Code / preformatted */
.single-content pre,
.single-content .wp-block-code,
.single-content .wp-block-preformatted {
  background: var(--panel2);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--cyan);
  margin: 1.5rem 0;
  white-space: pre-wrap;
  word-break: break-word;
}
.single-content code {
  background: var(--panel2);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.85em;
  color: var(--cyan);
}

/* Cover block */
.single-content .wp-block-cover {
  border-radius: 8px;
  overflow: hidden;
  margin: 1.5rem 0;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}
.single-content .wp-block-cover__inner-container { position: relative; z-index: 1; text-align: center; }

/* Media & Text */
.single-content .wp-block-media-text {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 2rem;
  align-items: center;
  margin: 1.5rem 0;
}
.single-content .wp-block-media-text .wp-block-media-text__media img { border-radius: 6px; width: 100%; height: auto; }
.single-content .wp-block-media-text.has-media-on-the-right { direction: rtl; }
.single-content .wp-block-media-text.has-media-on-the-right > * { direction: ltr; }

/* Layout classes (new Gutenberg) */
.single-content .is-layout-flex { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.single-content .is-layout-grid { display: grid; }
.single-content .is-layout-constrained { max-width: 100%; }
.single-content .is-layout-flow > * + * { margin-top: 1.25rem; }

/* ── Gutenberg color utility overrides — fix white/light boxes on dark theme ── */
/* Background blocks need padding to look intentional */
.single-content .has-background { padding: 1rem 1.25rem; border-radius: 6px; margin-bottom: 1.25rem; }
/* Remap light backgrounds → dark panel equivalents */
.single-content .has-white-background-color            { background-color: var(--panel2)              !important; color: var(--text) !important; }
.single-content .has-very-light-gray-background-color  { background-color: var(--panel2)              !important; color: var(--text) !important; }
.single-content .has-light-gray-background-color       { background-color: var(--panel)               !important; color: var(--text) !important; }
.single-content .has-pale-pink-background-color        { background-color: rgba(255,45,120,0.12)      !important; }
.single-content .has-pale-cyan-blue-background-color   { background-color: rgba(0,245,255,0.10)       !important; }
.single-content .has-vivid-cyan-blue-background-color  { background-color: rgba(0,245,255,0.15)       !important; }
.single-content .has-luminous-vivid-amber-background-color { background-color: rgba(255,230,0,0.12)  !important; }
/* Ensure text set to white/light by editor stays readable */
.single-content .has-white-color   { color: var(--text)  !important; }
.single-content .has-black-color   { color: var(--muted) !important; }

/* Responsive */
@media (max-width: 640px) {
  .single-content .wp-block-columns  { flex-direction: column; }
  .single-content .wp-block-column   { min-width: 100%; }
  .single-content .wp-block-media-text { grid-template-columns: 1fr; }
  .single-content .wp-block-media-text.has-media-on-the-right { direction: ltr; }
}

/* ── Event card link (homepage) ── */
.event-card-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  transition: text-shadow 0.2s;
  margin-top: 0.75rem;
  display: inline-block;
}
.event-card-link:hover { text-shadow: 0 0 8px var(--cyan); }

/* ── Responsive ── */
@media (max-width: 600px) {
  .single-page { padding: 5rem 1rem 3rem; }
  .single-header .section-title { font-size: 2rem; }
  .single-event-meta { flex-direction: column; gap: 0.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   EVENTS CALENDAR
   ═══════════════════════════════════════════════════════════════════════ */

#events {
  padding: 5.5rem 2rem;
  text-align: center;
}
.events-cal-header { margin-bottom: 2rem; }

/* ── Calendar wrapper ── */
.cal-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

/* ── Month nav ── */
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cal-nav button {
  background: none;
  border: 1px solid var(--border);
  color: var(--cyan);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.75rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-nav button:hover {
  background: rgba(0,245,255,0.1);
  border-color: var(--cyan);
}
.cal-month-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: none;
}

/* ── Grid ── */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: rgba(0,245,255,0.06);
}

/* ── Day headers ── */
.cal-hd {
  background: var(--panel2);
  padding: 0.5rem 0.25rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Day cells ── */
.cal-cell {
  background: var(--panel);
  min-height: 80px;
  padding: 0.35rem;
  text-align: left;
  position: relative;
}
.cal-empty { background: rgba(6,6,16,0.5); }
.cal-today { background: rgba(0,245,255,0.04); }
.cal-today .cal-num { color: var(--cyan); font-weight: 700; }

.cal-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  display: block;
  margin-bottom: 0.25rem;
}

/* ── Event pills (desktop calendar, now <a> elements) ── */
.cal-ev {
  display: block;
  width: 100%;
  padding: 2px 5px;
  margin-bottom: 2px;
  border: none;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  transition: filter 0.2s;
  line-height: 1.4;
}
.cal-ev:hover { filter: brightness(1.4); }
.cal-ev.league-night  { background: rgba(0,245,255,0.12); color: var(--cyan); }
.cal-ev.tournament    { background: rgba(255,45,120,0.12); color: var(--pink); }
.cal-ev.special-event { background: rgba(255,230,0,0.12); color: var(--yellow); }

/* ── Mobile agenda list ── */
#calAgenda { display: none; } /* hidden on desktop */

.cal-agenda-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border);
  border-left: 3px solid transparent;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s;
}
.cal-agenda-item:last-child { border-bottom: none; }
.cal-agenda-item:hover { background: rgba(0,245,255,0.04); }
.cal-agenda-item.league-night  { border-left-color: var(--cyan); }
.cal-agenda-item.tournament    { border-left-color: var(--pink); }
.cal-agenda-item.special-event { border-left-color: var(--yellow); }

.cal-agenda-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  min-width: 90px;
  padding-top: 0.15rem;
  flex-shrink: 0;
}
.cal-agenda-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.cal-agenda-type {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.cal-agenda-item.league-night  .cal-agenda-type { color: var(--cyan); }
.cal-agenda-item.tournament    .cal-agenda-type { color: var(--pink); }
.cal-agenda-item.special-event .cal-agenda-type { color: var(--yellow); }
.cal-agenda-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.cal-agenda-time {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
}
.cal-no-events {
  text-align: center;
  padding: 2rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Calendar responsive ── */
@media (max-width: 960px) {
  #events { padding: 4.5rem 1.5rem; }
}
@media (max-width: 640px) {
  #events { padding: 3.5rem 1rem; }
  /* Switch from grid to agenda list on mobile */
  #calGrid   { display: none; }
  #calAgenda { display: block; }
  .cal-month-label { font-size: 1.1rem; }
}

/* ── FOOTER CREDIT ──────────────────────────────────────────────── */
.footer-credit {
  width: 100%;
  text-align: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(112,112,160,0.4);
}
.footer-credit-btn {
  background: none;
  border: none;
  color: rgba(0,245,255,0.5);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  padding: 0;
  transition: color 0.2s;
}
.footer-credit-btn:hover { color: var(--cyan); }

/* ── TOMAS CONTACT MODAL ────────────────────────────────────────── */
.tomas-modal-card {
  max-width: 430px;
}
.tomas-modal-body {
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,245,255,0.2) transparent;
}
.tomas-modal-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  color: var(--text);
  margin: 0.25rem 0 0.75rem;
  line-height: 1;
}
.tomas-modal-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 0.75rem;
}
.tomas-li-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: opacity 0.2s;
}
.tomas-li-link:hover { opacity: 0.75; }
.tomas-field {
  margin-bottom: 1rem;
}
.tomas-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.tomas-field input,
.tomas-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.6rem 0.75rem;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s;
}
.tomas-field input:focus,
.tomas-field textarea:focus {
  border-color: rgba(0,245,255,0.4);
}
.tomas-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: var(--cyan);
  color: #0a0a0f;
  border: none;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  font-weight: 700;
}
.tomas-submit-btn:hover:not(:disabled) { opacity: 0.85; }
.tomas-submit-btn:disabled { opacity: 0.45; cursor: default; }
.tomas-form-status {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  text-align: center;
  min-height: 1.3em;
  color: var(--muted);
}
.tomas-form-status.success { color: var(--green); }
.tomas-form-status.error   { color: var(--pink); }

/* ── Single event external link ─────────────── */
.single-event-external {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.single-event-external-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.single-event-external-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--text);
}
.single-event-external-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  background: rgba(0,245,255,0.06);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.single-event-external-link:hover {
  background: var(--cyan);
  color: var(--ink);
  box-shadow: 0 0 20px rgba(0,245,255,0.3);
}
@media (max-width: 600px) {
  .single-event-external { flex-direction: column; align-items: flex-start; }
}

/* ══ PRICING + EVENTS — two-column layout ══════════════════════════════════ */

/* Outer grid: Open Play (left) | Private Events (right) */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--content-max);
  margin: 0 auto;
  align-items: start;
}

/* Column: Open Play */
.pricing-left {
  padding-right: 4rem;
  border-right: 1px solid var(--border);
}

/* Column: Private Events */
.pricing-right {
  padding-left: 4rem;
}

/* Column headings left-align instead of the old centered block */
.pricing-left .section-label,
.pricing-left .section-title,
.pricing-right .section-label,
.pricing-right .section-title { text-align: left; }
.pricing-left .neon-rule,
.pricing-right .neon-rule     { margin-left: 0; }

/* Drop-in cards: stacked single-column inside the left panel */
.pricing-left .pricing-grid {
  grid-template-columns: 1fr;
  max-width: 100%;
  margin: 1.5rem 0 0.5rem;
}

/* Private event pricing cards: stacked in right panel */
.pricing-right .pricing-events-grid {
  grid-template-columns: 1fr;
  max-width: 100%;
  margin: 1.25rem 0 1rem;
  gap: 1rem;
}

/* Compact event card padding when inside the column */
.pricing-right .pricing-event-card {
  max-width: 100%;
  margin: 0;
  padding: 1.5rem 1.75rem;
}

/* Add-ons fills column width */
.pricing-right .pricing-addons {
  max-width: 100%;
  margin: 0 0 0.5rem;
}

/* Addons: single row per item (icon · name · price) */
.pricing-right .addons-grid { grid-template-columns: 1fr; }
.pricing-right .addon-item  { flex-direction: row; align-items: center; }

/* Event types: constrain to column */
.pricing-right .event-types { margin-bottom: 1.25rem; }

/* Pink variant for the Full Buyout "Request a Date" button */
.btn-card--pink {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(255,45,120,0.06);
}
.btn-card--pink:hover {
  background: var(--pink);
  color: var(--ink);
  box-shadow: 0 0 20px rgba(255,45,120,0.4);
}

/* ── Responsive: stack columns on tablet / mobile ── */
@media (max-width: 960px) {
  .pricing-layout       { grid-template-columns: 1fr; }
  .pricing-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 3rem;
    margin-bottom: 0;
  }
  .pricing-right {
    padding-left: 0;
    padding-top: 3rem;
  }
  /* Restore 3-col card grid on tablet (one per tier) */
  .pricing-left .pricing-grid       { grid-template-columns: repeat(3, 1fr); }
  .pricing-right .pricing-events-grid { grid-template-columns: 1fr; }
  .pricing-right .pricing-event-card  { padding: 1.5rem; }
  /* Restore 3-col addons on tablet */
  .pricing-right .addons-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-right .addon-item  { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  /* Single-col everything on small phones */
  .pricing-left .pricing-grid       { grid-template-columns: 1fr; }
  .pricing-right .addons-grid       { grid-template-columns: 1fr; }
  .pricing-right .addon-item        { flex-direction: row; align-items: center; }
}
