
    :root {
      --page-789betlink-primary-bg: #1a1a1a;
      --page-789betlink-secondary-bg: #2a2a2a;
      --page-789betlink-text-color: #f0f0f0;
      --page-789betlink-accent-color: #e44d26; /* Orange-red for buttons/highlights */
      --page-789betlink-border-color: #3a3a3a;
      --page-789betlink-hover-color: #ff6f42;
    }

    .page-789betlink {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--page-789betlink-text-color);
      background-color: var(--page-789betlink-primary-bg);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating button */
      overflow-x: hidden;
    }

    .page-789betlink__safe-zone {
      height: 160px; /* Pre-reserved space for floating menu */
      background-color: transparent;
      width: 100%;
    }

    .page-789betlink__hero-section {
      text-align: center;
      padding: 0 15px 30px;
      background-color: var(--page-789betlink-primary-bg);
    }

    .page-789betlink__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      margin-bottom: 20px;
    }

    .page-789betlink__title {
      font-size: 2.2em;
      color: var(--page-789betlink-accent-color);
      margin-bottom: 15px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
    
    .page-789betlink__subtitle {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: var(--page-789betlink-text-color);
    }

    .page-789betlink__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 380px;
      background-color: var(--page-789betlink-accent-color);
      color: white;
      padding: 15px 20px;
      border-radius: 50px;
      text-align: center;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-789betlink-pulse 2s infinite;
    }

    .page-789betlink__floating-button:hover {
      background-color: var(--page-789betlink-hover-color);
      transform: translateX(-50%) scale(1.05);
    }

    @keyframes page-789betlink-pulse {
      0% { box-shadow: 0 0 0 0 rgba(228, 77, 38, 0.7); }
      70% { box-shadow: 0 0 0 20px rgba(228, 77, 38, 0); }
      100% { box-shadow: 0 0 0 0 rgba(228, 77, 38, 0); }
    }

    .page-789betlink__section {
      padding: 30px 15px;
      margin-bottom: 20px;
      background-color: var(--page-789betlink-secondary-bg);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-789betlink__section-title {
      font-size: 1.8em;
      color: var(--page-789betlink-accent-color);
      text-align: center;
      margin-bottom: 25px;
      border-bottom: 2px solid var(--page-789betlink-border-color);
      padding-bottom: 10px;
    }

    .page-789betlink__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
    }

    .page-789betlink__card {
      background-color: var(--page-789betlink-primary-bg);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-789betlink-border-color);
    }

    .page-789betlink__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-789betlink__card-image {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
    
    .page-789betlink__card-image--gamelogo {
      max-height: 60px; /* Specific height for game logos */
      width: auto;
      object-fit: contain;
    }

    .page-789betlink__card-title {
      font-size: 1.1em;
      margin-bottom: 5px;
      color: var(--page-789betlink-text-color);
    }

    .page-789betlink__card-title a {
      color: var(--page-789betlink-accent-color);
      text-decoration: none;
      font-weight: bold;
    }

    .page-789betlink__card-title a:hover {
      text-decoration: underline;
      color: var(--page-789betlink-hover-color);
    }

    .page-789betlink__list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-789betlink__list-item {
      background-color: var(--page-789betlink-primary-bg);
      margin-bottom: 10px;
      padding: 15px;
      border-radius: 5px;
      border-left: 4px solid var(--page-789betlink-accent-color);
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    }

    .page-789betlink__list-item strong {
      color: var(--page-789betlink-accent-color);
    }

    .page-789betlink__text-center {
      text-align: center;
    }

    .page-789betlink__button {
      display: inline-block;
      background-color: var(--page-789betlink-accent-color);
      color: white;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-789betlink__button:hover {
      background-color: var(--page-789betlink-hover-color);
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-789betlink__grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
      .page-789betlink__title {
        font-size: 3em;
      }
      .page-789betlink__section {
        padding: 40px 30px;
      }
      .page-789betlink__floating-button {
        bottom: 30px;
        max-width: 450px;
      }
    }

    @media (min-width: 1024px) {
      .page-789betlink__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
      .page-789betlink__section {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
      }
    }
  