
    :root {
      --page-primary-color: #e44d26; /* A vibrant color for betting */
      --page-secondary-color: #333;
      --page-accent-color: #f7b32b; /* Gold/yellow for highlights */
      --page-text-color: #eee;
      --page-dark-bg: #1a1a1a;
      --page-light-bg: #2a2a2a;
      --page-border-color: #444;
      --page-spacing-md: 20px;
      --page-spacing-lg: 40px;
    }

    /* Base styles for the page content, ensuring contrast */
    .page-https-123b-123-com {
      font-family: 'Arial', sans-serif;
      color: var(--page-text-color);
      background-color: var(--page-dark-bg);
      line-height: 1.6;
      padding-top: 10px; /* Small padding, assuming body handles main header offset */
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-https-123b-123-com__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--page-spacing-md);
      box-sizing: border-box;
    }

    .page-https-123b-123-com__section {
      padding: var(--page-spacing-lg) 0;
      text-align: center;
      position: relative;
    }

    .page-https-123b-123-com__section--dark {
      background-color: var(--page-light-bg);
    }

    .page-https-123b-123-com__h1,
    .page-https-123b-123-com__h2,
    .page-https-123b-123-com__h3 {
      color: var(--page-accent-color);
      margin-bottom: var(--page-spacing-md);
      font-weight: bold;
    }

    .page-https-123b-123-com__h1 {
      font-size: 2.8em;
      line-height: 1.2;
      color: #fff; /* White for main title */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-https-123b-123-com__h2 {
      font-size: 2.2em;
      color: var(--page-primary-color);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-https-123b-123-com__h3 {
      font-size: 1.6em;
      color: var(--page-accent-color);
    }

    .page-https-123b-123-com__p {
      font-size: 1.1em;
      margin-bottom: 1em;
      color: var(--page-text-color);
    }

    /* Hero Section */
    .page-https-123b-123-com__hero-section {
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('[GALLERY:hero:1920x1080:online_betting,casino_background]') no-repeat center center/cover;
      padding: var(--page-spacing-lg) var(--page-spacing-md);
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
    }

    .page-https-123b-123-com__hero-content {
      max-width: 800px;
      z-index: 2;
    }

    .page-https-123b-123-com__hero-text {
      font-size: 1.4em;
      margin-bottom: var(--page-spacing-md);
      color: #fff;
    }

    .page-https-123b-123-com__btn-group {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .page-https-123b-123-com__btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--page-primary-color);
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .page-https-123b-123-com__btn:hover {
      background-color: #c0392b; /* Darker primary */
      transform: translateY(-2px);
    }

    .page-https-123b-123-com__btn--secondary {
      background-color: var(--page-accent-color);
      color: var(--page-secondary-color);
    }

    .page-https-123b-123-com__btn--secondary:hover {
      background-color: #e6b100; /* Darker accent */
    }

    /* Floating Buttons */
    .page-https-123b-123-com__floating-buttons {
      position: fixed;
      bottom: var(--page-spacing-md);
      right: var(--page-spacing-md);
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-https-123b-123-com__floating-btn {
      padding: 10px 20px;
      background-color: var(--page-primary-color);
      color: #fff;
      border-radius: 50px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.4);
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      white-space: nowrap;
    }

    .page-https-123b-123-com__floating-btn:hover {
      background-color: #c0392b;
      transform: scale(1.05);
    }

    /* Product Display */
    .page-https-123b-123-com__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--page-spacing-md);
      margin-top: var(--page-spacing-lg);
    }

    .page-https-123b-123-com__product-card {
      background-color: var(--page-dark-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      text-align: center;
      transition: transform 0.3s ease;
      border: 1px solid var(--page-border-color);
    }

    .page-https-123b-123-com__product-card:hover {
      transform: translateY(-5px);
    }

    .page-https-123b-123-com__product-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-https-123b-123-com__product-content {
      padding: var(--page-spacing-md);
    }

    .page-https-123b-123-com__product-title {
      font-size: 1.3em;
      color: var(--page-accent-color);
      margin-bottom: 10px;
    }

    .page-https-123b-123-com__product-description {
      font-size: 0.95em;
      color: var(--page-text-color);
    }

    /* Promotions and Lists */
    .page-https-123b-123-com__list {
      list-style: none;
      padding: 0;
      margin: var(--page-spacing-lg) auto 0;
      max-width: 800px;
      text-align: left;
    }

    .page-https-123b-123-com__list-item {
      background-color: var(--page-light-bg);
      border: 1px solid var(--page-border-color);
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-https-123b-123-com__list-item-icon {
      flex-shrink: 0;
      /* Adjusting for min-size 200x200px requirement */
      min-width: 200px;
      min-height: 200px;
      width: 200px;
      height: 200px;
      object-fit: contain;
      border-radius: 5px;
    }

    .page-https-123b-123-com__list-item-content {
      flex-grow: 1;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-https-123b-123-com__list-item-title {
      color: var(--page-primary-color);
      font-weight: bold;
      margin-bottom: 5px;
      font-size: 1.2em;
    }

    /* Payment and Providers Grid */
    .page-https-123b-123-com__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: var(--page-spacing-md);
      margin-top: var(--page-spacing-lg);
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-https-123b-123-com__logo-item {
      background-color: var(--page-light-bg);
      padding: 15px;
      border-radius: 8px;
      border: 1px solid var(--page-border-color);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      transition: transform 0.2s ease;
    }

    .page-https-123b-123-com__logo-item:hover {
      transform: scale(1.05);
    }

    .page-https-123b-123-com__logo-image {
      max-width: 100%;
      /* Adjusting for min-size 200x200px requirement */
      min-width: 200px;
      min-height: 200px;
      width: 200px;
      height: 200px;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-https-123b-123-com__faq-section {
      background-color: var(--page-dark-bg);
    }

    .page-https-123b-123-com__faq-list {
      max-width: 800px;
      margin: var(--page-spacing-lg) auto 0;
    }

    .page-https-123b-123-com__faq-item {
      background-color: var(--page-light-bg);
      border: 1px solid var(--page-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .page-https-123b-123-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--page-secondary-color);
      color: var(--page-text-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-https-123b-123-com__faq-question h3 {
      margin: 0;
      color: var(--page-accent-color);
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-https-123b-123-com__faq-question:hover {
      background-color: #444;
    }

    .page-https-123b-123-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      color: var(--page-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
    }

    .page-https-123b-123-com__faq-item.active .page-https-123b-123-com__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-https-123b-123-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: var(--page-text-color);
      text-align: left;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-https-123b-123-com__faq-item.active .page-https-123b-123-com__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important; /* Ensure padding is applied */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-https-123b-123-com__h1 {
        font-size: 2.2em;
      }

      .page-https-123b-123-com__h2 {
        font-size: 1.8em;
      }

      .page-https-123b-123-com__h3 {
        font-size: 1.4em;
      }

      .page-https-123b-123-com__hero-section {
        min-height: 400px;
        padding: var(--page-spacing-lg) var(--page-spacing-md);
      }

      .page-https-123b-123-com__btn-group {
        flex-direction: column;
        gap: 10px;
      }

      .page-https-123b-123-com__btn {
        width: 100%;
        max-width: 300px; /* Limit button width on small screens */
        margin: 0 auto;
      }

      .page-https-123b-123-com__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Horizontal on mobile to save vertical space */
        width: calc(100% - 30px);
        justify-content: space-around;
      }

      .page-https-123b-123-com__floating-btn {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-https-123b-123-com__product-grid,
      .page-https-123b-123-com__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* More items per row for logos */
        gap: 15px;
      }

      /* List item mobile responsiveness */
      .page-https-123b-123-com__list {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-https-123b-123-com__list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-https-123b-123-com__list-item-icon {
        width: 100% !important;
        height: auto !important;
        max-width: 250px !important; /* Ensure images scale down but not too small */
        min-width: 200px !important;
        min-height: 200px !important;
        margin-bottom: 10px;
      }

      .page-https-123b-123-com__list-item-title {
        font-size: 1.1em;
      }
      
      .page-https-123b-123-com__list-item-content {
        width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important; /* Added for long keywords */
      }

      .page-https-123b-123-com__logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .page-https-123b-123-com__logo-item {
        padding: 10px;
      }

      .page-https-123b-123-com__logo-image {
        max-width: 100%;
        height: auto;
        min-width: 150px !important; /* Keep minimum size for images */
        min-height: 150px !important;
        width: 150px !important;
        height: 150px !important;
      }

      .page-https-123b-123-com__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-https-123b-123-com__faq-question h3 {
        font-size: 1em;
      }

      .page-https-123b-123-com__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-https-123b-123-com__h1 {
        font-size: 1.8em;
      }

      .page-https-123b-123-com__h2 {
        font-size: 1.5em;
      }

      .page-https-123b-123-com__hero-text {
        font-size: 1.1em;
      }

      .page-https-123b-123-com__floating-buttons {
        flex-direction: column; /* Back to vertical if space is really tight */
        width: auto;
        left: 15px;
        right: 15px;
      }

      .page-https-123b-123-com__floating-btn {
        width: 100%;
        max-width: none;
      }

      .page-https-123b-123-com__product-grid {
        grid-template-columns: 1fr;
      }
      
      .page-https-123b-123-com__logo-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for logos still okay */
      }
    }
  