@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&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;
    }

    /* 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: min(100%, 1280px);
  min-height: min(78vh, 720px);
  padding: clamp(26px, 4vw, 64px) clamp(24px, 6vw, 86px);
  border-radius: 28px;
  position: relative;
  background: var(--inside-2);
  border: none;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
      text-align: center;
      gap: clamp(14px, 2.8vw, 26px);
      overflow: hidden;
    }

    .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: auto;
        padding: 36px 18px 40px;
        gap: 18px;
        width: 100%;
        max-width: 100%;
      }

      .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: 30px 14px 34px;
      }

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

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

    /* 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: var(--blue);
      color: var(--white);
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    }

    .btn--primary:hover {
      background: #1f45c5;
      transform: translateY(-1px);
    }

    .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: 700;
      color: var(--slate-700);
      margin-bottom: 6px;
      font-size: 14px;
    }

.pr-field input,
.pr-field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d7dce3;
  font-size: 15px;
  transition: border 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
  color: #000000;
}

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

.pr-field input:focus,
.pr-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.18);
}

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

    .pr-submit {
      width: 100%;
      justify-content: center;
      font-size: 16px;
      padding: 13px 14px;
    }

    .form__hint {
      font-size: 14px;
      color: var(--slate-500);
      margin: 4px 0 0;
    }

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

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

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

    .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(15, 23, 42, 0.45);
    }

.modal__content {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  padding: 26px 26px 22px;
  max-width: 560px;
  width: min(92vw, 560px);
  z-index: 1;
  display: grid;
  gap: 10px;
  color: #000000;
}

.modal__title {
  margin: 0;
  font-size: 22px;
  color: #000000;
}

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

    .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: #000000;
}

.modal__content a {
  color: var(--blue);
}

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

.form__hint {
  color: #000000;
}
