@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Source+Sans+3:wght@400;500;600;700&display=swap");

    :root {
      --bg-0: #000000;
      --inside-2: #050505; /* Slightly darker inner card for contrast */
      
      /* THE REAL GOLD PALETTE */
      /* This simulates reflection: Dark -> Light -> Horizon -> Dark -> Light */
      --gold-metallic: linear-gradient(
        175deg, 
        #bf953f 10%, 
        #fcf6ba 35%, 
        #b38728 51%, 
        #fbf5b7 54%, 
        #aa771c 85%
      );
      
      /* Solid gold color for fallbacks */
      --gold-solid: #d4af37;
      
      /* True black for text sitting ON TOP of gold backgrounds */
      --text-on-gold: #000000; 

      --bingo-gold: linear-gradient(
        180deg,
        #fff6c7 0%,
        #f6d777 16%,
        #c79a2c 45%,
        #ffe28a 64%,
        #6f4f0a 100%
      );

      --blue: #1d4ed8;
      --slate-900: #0f172a;
      --slate-700: #334155;
      --slate-500: #64748b;
      --white: #ffffff;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--gold-solid);
      background: #000000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: clamp(20px, 4vw, 44px);
      font-family: "Garamond", "Palatino Linotype", "Bodoni MT", "Didot", serif;
      position: relative;
      overflow-x: hidden;
    }

    body.modal-open {
      overflow: hidden;
    }

    /* Background Pattern - Keeping subtle */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='%23d6c08a' fill-opacity='0.18'%3E%3Ccircle cx='12' cy='22' r='1'/%3E%3Ccircle cx='40' cy='60' r='1'/%3E%3Ccircle cx='88' cy='24' r='1'/%3E%3Ccircle cx='140' cy='36' r='1'/%3E%3Ccircle cx='170' cy='18' r='1'/%3E%3Ccircle cx='22' cy='120' r='1'/%3E%3Ccircle cx='66' cy='150' r='1'/%3E%3Ccircle cx='110' cy='108' r='1'/%3E%3Ccircle cx='156' cy='140' r='1'/%3E%3Ccircle cx='92' cy='88' r='1'/%3E%3C/g%3E%3Cg fill='%23f7e6b6' fill-opacity='0.09'%3E%3Ccircle cx='30' cy='10' r='1'/%3E%3Ccircle cx='70' cy='70' r='1'/%3E%3Ccircle cx='150' cy='84' r='1'/%3E%3Ccircle cx='118' cy='156' r='1'/%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.55;
      pointer-events: none;
      mix-blend-mode: screen;
    }

    .main {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
      flex: 1;
    }

.card {
  width: 100%;
  max-width: none;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  overflow: visible;
}

    .hero-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(14px, 2.8vw, 26px);
      width: 100%;
    }

    .badge-image {
      width: clamp(180px, 40vw, 320px);
      height: auto;
      display: block;
    }

    /* THE METALLIC TITLE */
.title {
  margin: 0;
  font-size: clamp(52px, 10vw, 132px);
  line-height: 1.05;
  padding-bottom: 0.1em; /* Space for descenders */
  display: inline-block;
  max-width: 100%;
  overflow: visible;
}

.bingo-now-gold{
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.05;
  background: var(--bingo-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 1px 0 rgba(255,255,255,.10),
    0 16px 36px rgba(0,0,0,.45);
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
  padding-left: 0.06em;
  padding-right: 0.06em;
  -webkit-text-stroke: 0.01em rgba(0, 0, 0, 0);
}

    .rule {
      width: min(70%, 520px);
      height: 2px;
      background: var(--gold-metallic);
      opacity: 0.8;
      border-radius: 50%; /* Tapered ends */
    }

    /* THE METALLIC SUBTITLE */
    .sub {
      margin: 0;
      font-family: "Avenir Next", "Optima", "Gill Sans", "Candara", "Helvetica Neue", sans-serif;
      font-size: clamp(16px, 2.2vw, 24px);
      letter-spacing: 0.05em;
      font-weight: 500;
      
      /* Apply the metallic gradient to text */
      background: var(--gold-metallic);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .btn-inquire {
      display: inline-block;
      text-decoration: none;
      padding: 22px 55px;
      
      /* Reuse the metallic gradient */
      background: var(--bingo-gold);
      color: var(--text-on-gold);
      
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      border-radius: 4px;
      transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      
      /* Deep metallic shadow */
      box-shadow: 0 10px 30px -5px rgba(184, 138, 77, 0.5);
      position: relative;
      overflow: hidden;
      font-family: "Avenir Next", "Optima", "Gill Sans", "Candara", "Helvetica Neue", sans-serif;
    }

    /* Shine effect on hover */
    .btn-inquire::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -60%;
      width: 20%;
      height: 200%;
      background: rgba(255, 255, 255, 0.6);
      transform: rotate(25deg);
      transition: all 0.6s ease;
      opacity: 0;
      mix-blend-mode: overlay;
    }

    .btn-inquire:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px -10px rgba(184, 138, 77, 0.8);
      filter: brightness(1.1); /* Make the gold pop on hover */
    }

    .btn-inquire:hover::after {
      left: 120%;
      opacity: 1;
    }

    @media (max-width: 720px) {
      body {
        padding: 16px;
      }

      .card {
        min-height: 0;
        padding: 0;
      }

      .hero-group {
        transform: scale(0.9);
        transform-origin: top center;
      }

      .badge-image {
        width: clamp(160px, 55vw, 280px);
      }

      .title {
        font-size: clamp(52px, 16vw, 140px);
      }

      .rule {
        width: min(82%, 520px);
      }

      .sub {
        font-size: clamp(18px, 4.6vw, 26px);
      }

      .btn-inquire {
        padding: 18px 44px;
      }
    }

    @media (max-width: 520px) {
      body {
        padding: 12px;
      }

      .card {
        padding: 0;
      }

      .hero-group {
        transform: scale(0.88);
      }

      .title {
        font-size: clamp(40px, 12.5vw, 96px);
        letter-spacing: 0.01em;
      }

      .form__message {
        margin: 0;
      }

      .form__message:empty {
        display: none;
      }

      .pr-contact__label {
        margin: 4px 0 6px;
      }
    }

    /* FOOTER - STRICTLY WHITE/GREY, NO GOLD */
    footer {
      width: 100%;
      text-align: center;
      color: #ffffff;
      font-family: "Avenir Next", "Optima", "Gill Sans", "Candara", "Helvetica Neue", sans-serif;
      font-size: 0.9rem;
      letter-spacing: 0.02em;
      padding: 20px 0 12px;
    }

    footer a {
      color: #ffffff;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    
    footer a:hover {
      opacity: 0.7;
    }

    .footer-primary {
      margin: 0;
    }

    .footer-secondary {
      margin-top: 6px;
      font-size: 0.82rem;
    }

    .btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      border: none;
      border-radius: 12px;
      padding: 12px 14px;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.08s ease, box-shadow 0.12s ease, background 0.12s ease;
      text-decoration: none;
    }

    .btn:disabled {
      opacity: 0.65;
      cursor: not-allowed;
    }

    .btn--primary {
      background: linear-gradient(to bottom, #cfc09f 0%, #a9905d 100%);
      color: #000000;
      box-shadow: 0 5px 15px rgba(169, 144, 93, 0.3);
      border: 1px solid #a9905d;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .btn--primary:hover {
      background: linear-gradient(to bottom, #dcd0b2 0%, #bca575 100%);
      transform: translateY(-1px);
      box-shadow: 0 8px 25px rgba(169, 144, 93, 0.5);
    }

    .pr-form {
      display: grid;
      gap: 12px;
    }

    .pr-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .pr-field label {
      display: block;
      font-weight: 600;
      margin-bottom: 6px;
      font-size: 15px;
      color: #f2f2f2;
      letter-spacing: 0.5px;
    }

.pr-field input,
.pr-field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 8px;
  background: #151515;
  border: 1px solid rgba(212, 175, 55, 0.25);
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  color: #ffffff;
  transition: all 0.2s ease;
}

.pr-field textarea {
  min-height: 140px;
  resize: vertical;
}

.pr-field input:focus,
.pr-field textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.5);
  background: #1a1a1a;
}

    .req {
      color: #cfc09f;
      margin-left: 4px;
    }

    .pr-submit {
      width: 100%;
      justify-content: center;
      font-size: 16px;
      padding: 13px 14px;
      border-radius: 14px;
      color: #0b0b0b;
      font-weight: 600;
      letter-spacing: 0.08em;
      background: linear-gradient(
        180deg,
        #fff7d6 0%,
        #f8dc87 18%,
        #d4aa3a 45%,
        #ffdf8a 68%,
        #8a6110 100%
      );
      border: 1px solid rgba(255, 220, 140, 0.55);
      box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -2px 6px rgba(0, 0, 0, 0.35);
    }

    .form__hint {
      font-size: 16px;
      color: #eaeaea;
      margin: 4px 0 0;
    }

    .pr-submit:hover {
      background: linear-gradient(
        180deg,
        #fffbe6 0%,
        #ffe49a 18%,
        #ddb449 45%,
        #ffe39a 68%,
        #966a12 100%
      );
    }

    .pr-submit:active {
      transform: translateY(1px);
      box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    }

.form__message {
  font-weight: 600;
  color: #eaeaea;
}

.form__message--error {
  color: #eaeaea;
}

.form__message--success {
  color: #eaeaea;
}

.pr-contact {
  margin-top: 2px;
  text-align: center;
  padding-bottom: 24px;
}

.pr-contact__label {
  margin: 8px 0 6px;
}

.pr-contact__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.modal__content .pr-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
}

    .pr-aux {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
    }

    .modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1200;
    }

    .modal.is-open {
      display: flex;
    }

    .modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(5px);
    }

.modal__content {
  position: relative;
  background: #0a0a0a;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 20px rgba(212, 175, 55, 0.1);
  border-radius: 18px;
  padding: 26px 26px 22px;
  max-width: 560px;
  width: min(92vw, 560px);
  z-index: 1;
  display: grid;
  gap: 10px;
  color: #eaeaea;
  font-family: "Source Sans 3", "Avenir Next", "Optima", "Gill Sans", "Candara", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.modal__title {
  margin: 0;
  font-size: 24px;
  background: var(--bingo-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 22px rgba(0, 0, 0, 0.45);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal__subtitle {
  margin: 0;
  color: #eaeaea;
}

    .modal__actions {
      display: grid;
      gap: 10px;
      margin-top: 6px;
    }

    .modal__btn {
      width: 100%;
    }

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: #d4af37;
}

.modal__content a {
  color: #d4af37;
  text-decoration: underline;
}

.pr-field label {
  color: #f2f2f2;
}

.form__hint {
  color: #eaeaea;
}



