  /* HEADER */
  .header {
    text-align: center; margin-bottom: 50px; position: relative;
  }
  .header .suit-watermark {
    position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
    font-size: 140px; opacity: 0.02; color: var(--antique-gold);
    pointer-events: none; user-select: none;
  }
  .header h1 {
    font-family: 'Cinzel', serif; font-size: 34px; font-weight: 900;
    color: var(--antique-gold); letter-spacing: 4px; margin-bottom: 6px;
    text-shadow: 0 2px 12px rgba(201,168,76,0.15);
  }
  .header .subtitle-text {
    color: var(--burgundy-bright); font-size: 12px; font-weight: 700;
    letter-spacing: 5px; text-transform: uppercase;
    font-family: 'Cinzel', serif;
  }

  /* CHIP GRID — mimics the photo layout */
  .chip-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .chip-row {
    display: flex;
    justify-content: center;
    gap: 24px;
  }

  /* THE CHIP */
  .poker-chip {
    position: relative;
    width: 140px; height: 140px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: default;
    transition: transform 0.25s ease;
  }
  .poker-chip:hover { transform: scale(1.06); }

  /* Outer ring */
  .chip-outer {
    width: 100%; height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    box-shadow:
      0 6px 20px rgba(0,0,0,0.5),
      0 2px 6px rgba(0,0,0,0.3),
      inset 0 2px 4px rgba(255,255,255,0.1),
      inset 0 -2px 4px rgba(0,0,0,0.2);
  }

  /* Edge notches — 8 white rectangular notches around the edge */
  .chip-notch {
    position: absolute;
    width: 18px; height: 10px;
    background: rgba(255,255,255,0.85);
    border-radius: 2px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.15);
  }
  .chip-notch.dark-notch {
    background: rgba(0,0,0,0.25);
  }

  /* Inner circle with dashed ring */
  .chip-inner {
    width: 72%;
    height: 72%;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    z-index: 2;
  }
  .chip-inner::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,0.2);
  }

  /* Denomination label */
  .chip-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 28px;
    z-index: 3;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
    letter-spacing: -1px;
  }

  /* Small dots (dice pattern) — positioned between notches */
  .chip-dot {
    position: absolute;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.2);
  }
  
  /* HEADER */
  .header {
    text-align: center; margin-bottom: 50px; position: relative;
  }
  @media (max-width: 800px) {
    .nav-links { overflow-x: auto; scrollbar-width: none; }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-link { padding: 18px 12px; font-size: 10px; }
    .nav-brand { margin-right: 16px; }
    .nav-brand .brand-main { font-size: 13px; }
    .nav-brand .brand-sub { font-size: 8px; }
    .felt-body { padding: 24px 12px 60px; }
    .header h1 { font-size: 26px; letter-spacing: 2px; }
    .header { margin-bottom: 36px; }

    .poker-chip { width: 100px; height: 100px; }
    .chip-notch { width: 13px; height: 7px; }
    .chip-label { font-size: 20px; }
    .chip-dot { width: 5px; height: 5px; }
    .chip-row { gap: 14px; }
    .chip-grid { gap: 16px; }
  }
  @media (max-width: 400px) {
    .poker-chip { width: 85px; height: 85px; }
    .chip-notch { width: 11px; height: 6px; }
    .chip-label { font-size: 16px; }
    .chip-dot { width: 4px; height: 4px; }
    .chip-row { gap: 10px; }
  }
