    :root {
      --primary: #00a76f;
      --primary-dark: #007b55;
      --secondary: #e8f5e9;
      --accent: #81c784;
      --text: #212121;
      --bg: #ffffff;
      --bg-light: #f7fcf7;
      --shadow-light: rgba(0, 0, 0, 0.08);
      --shadow-medium: rgba(0, 0, 0, 0.12);
    }

    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--bg-light);
      color: var(--text);
      line-height: 1.6;
      padding: 0;
      margin: 0;
      font-weight: 400;
    }

    header {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      text-align: center;
      padding: 5rem 2rem 3rem;
      box-shadow: 0 10px 30px var(--shadow-medium);
      position: relative;
      overflow: hidden;
    }

    .header-image {
      padding-right: 0;
      padding-bottom: 2rem;
      text-align: center;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
    }

    header h1 {
      font-size: 3.2rem;
      font-weight: 700;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.2;
      position: relative;
      z-index: 1;
    }

    .container {
      max-width: 900px;
      margin: -2rem auto 0;
      padding: 3.5rem 1.5rem;
      background-color: var(--bg);
      border-radius: 1.5rem;
      box-shadow: 0 12px 30px var(--shadow-light);
      position: relative;
      z-index: 2;
    }

    /* === SCRATCH GAME STYLES === */
    .game-section {
      margin: 2.5rem 0;
      text-align: center;
    }

    .searchable-dropdown {
      position: relative;
      width: 100%;
      max-width: 320px;
      margin: 0 auto;
    }

    #regionSearch {
      width: 100%;
      padding: 10px 16px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      background: white;
      color: var(--text);
    }

    #regionSearch:focus {
      outline: 2px solid var(--primary);
      border-color: var(--primary);
    }

    .dropdown-list {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 200px;
      overflow-y: auto;
      background: white;
      border: 1px solid #ddd;
      border-top: none;
      border-radius: 0 0 8px 8px;
      list-style: none;
      z-index: 10;
      box-shadow: 0 4px 12px var(--shadow-light);
      display: none;
    }

    .dropdown-list.show {
      display: block;
    }

    .dropdown-list li {
      padding: 10px 16px;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
    }

    .dropdown-list li:hover,
    .dropdown-list li.selected {
      background-color: var(--secondary);
      color: var(--primary);
    }

    .controls {
      margin: 20px 0;
    }

    button#showTicketBtn {
      background: var(--primary);
      color: white;
      border: none;
      padding: 10px 24px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      box-shadow: 0 4px 10px rgba(0,167,111,0.3);
    }

    button#showTicketBtn:hover:not(:disabled) {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }

    button#showTicketBtn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    .scratch-container {
      position: relative;
      width: 100%;
      max-width: 600px;
      height: 250px;
      margin: 20px auto;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px var(--shadow-medium);
      display: none;
    }

    canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    /* === Rest of your content styles === */
    .container > p {
      font-size: 1.15rem;
      margin-bottom: 1.5rem;
      color: #424242;
      font-weight: 300;

    }

    .story {
      background: var(--secondary);
      border-radius: 1.25rem;
      padding: 2rem 2.5rem;
      margin: 2rem 0;
      box-shadow: 0 6px 18px var(--shadow-light);
      border-left: 8px solid var(--primary);
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .story.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .story h3 {
      margin-bottom: 0.75rem;
      color: var(--primary);
      font-size: 1.5rem;
      font-weight: 600;
    }

    .story p {
      font-size: 1rem;
      color: #555;
    }

    .cta {
      text-align: center;
      margin: 5rem 0 3rem;
      padding: 1.5rem;
      background-color: var(--secondary);
      border-radius: 1.5rem;
    }

    .cta p {
      font-size: 1.6rem;
      font-weight: 600;
      margin-bottom: 2rem;
      color: var(--primary);
      line-height: 1.3;
    }

    .cta a {
      display: inline-block;
      background-color: var(--primary);
      color: white;
      padding: 1.2rem 3rem;
      border-radius: 2.5rem;
      font-size: 1.2rem;
      text-decoration: none;
      font-weight: 700;
      box-shadow: 0 8px 25px var(--shadow-medium);
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: pulse 2s infinite ease-in-out;
    }

    .cta a:hover {
      background-color: #2e7d32;
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 30px rgba(0,0,0,0.2);
      animation: none;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.015); }
      100% { transform: scale(1); }
    }

    footer {
      text-align: center;
      font-size: 0.9rem;
      color: #757575;
      padding: 2.5rem 1rem;
      border-top: 1px solid #eee;
      background-color: var(--bg-light);
      margin-top: 3rem;
    }

    @media (max-width: 768px) {
      .header-content { flex-direction: column; }
      header h1 { font-size: 2.5rem; }
      .container { margin: -1.5rem auto 0; padding: 2.5rem 1rem; }
      .scratch-container { height: 200px; }
      .searchable-dropdown { max-width: 100%; }
    }

    @media (max-width: 480px) {
      .scratch-container { height: 180px; }
      button#showTicketBtn { width: 100%; max-width: 300px; }
    }

    .deal-display {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .product-image {
      width: 180px;
      height: 180px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 12px var(--shadow-light);
      display: none; /* hidden until a deal is shown */
    }

    @media (max-width: 768px) {
      .deal-display {
        flex-direction: column;
      }
      .product-image {
        width: 160px;
        height: 160px;
      }
    }
