
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #000080; /* Navy Blue */
      --accent-color: #FF4500; /* OrangeRed */
      --text-color-light: #f8f9fa;
      --text-color-dark: #343a40;
      --background-dark: #1a1a1a;
      --background-light: #ffffff;
      --button-bg: var(--accent-color);
      --button-text: var(--text-color-light);
      --border-radius-small: 5px;
      --border-radius-medium: 10px;
      --padding-section: 40px 20px;
      --padding-content: 20px;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color-light);
      background-color: var(--background-dark);
      margin: 0;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-1-1bet {
      max-width: 1200px;
      margin: 0 auto;
      overflow-x: hidden; /* Prevent horizontal scroll from fixed elements */
      position: relative;
    }

    /* General section styling */
    .page-1-1bet__section {
      padding: var(--padding-section);
      margin-bottom: 20px;
      background-color: var(--background-dark);
      border-radius: var(--border-radius-medium);
    }

    .page-1-1bet__section--light {
      background-color: #2a2a2a;
      color: var(--text-color-light);
    }

    .page-1-1bet__heading {
      text-align: center;
      color: var(--primary-color);
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-1-1bet__subheading {
      text-align: center;
      color: var(--primary-color);
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-1-1bet__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: var(--text-color-light);
    }

    .page-1-1bet__button {
      display: inline-block;
      background-color: var(--button-bg);
      color: var(--button-text);
      padding: 12px 25px;
      border-radius: var(--border-radius-small);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      text-align: center;
      border: none;
      cursor: pointer;
    }

    .page-1-1bet__button:hover {
      background-color: #e63900; /* Slightly darker orange */
    }

    /* Hero Section */
    .page-1-1bet__hero-section {
      position: relative;
      text-align: center;
      color: var(--text-color-light);
      padding-top: 10px; /* Small decorative top padding, body handles main offset */
      padding-bottom: 40px;
      overflow: hidden;
      background-color: #000;
    }

    .page-1-1bet__hero-image {
      width: 100%;
      height: 500px;
      object-fit: cover;
      display: block;
      filter: brightness(0.7); /* Darken image for text readability */
    }

    .page-1-1bet__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      width: 90%;
      max-width: 800px;
    }

    .page-1-1bet__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-1-1bet__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--text-color-light);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    /* Floating Buttons */
    .page-1-1bet__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(0, 0, 0, 0.7);
      padding: 10px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-1-1bet__floating-button {
      padding: 10px 20px;
      font-size: 1.1em;
      border-radius: 30px;
      text-transform: uppercase;
      font-weight: bold;
      transition: all 0.3s ease;
      text-decoration: none;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-1-1bet__floating-button--register {
      background-color: var(--primary-color);
      color: var(--background-dark);
    }

    .page-1-1bet__floating-button--register:hover {
      background-color: #e5b800;
      transform: translateY(-2px);
    }

    .page-1-1bet__floating-button--login {
      background-color: var(--secondary-color);
      color: var(--text-color-light);
      border: 1px solid var(--primary-color);
    }

    .page-1-1bet__floating-button--login:hover {
      background-color: #000066;
      transform: translateY(-2px);
    }

    /* Product Display Section */
    .page-1-1bet__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-1-1bet__product-card {
      background-color: #2a2a2a;
      border-radius: var(--border-radius-medium);
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-1-1bet__product-card:hover {
      transform: translateY(-5px);
    }

    .page-1-1bet__product-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
    }

    .page-1-1bet__product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-1-1bet__product-card:hover .page-1-1bet__product-image {
      transform: scale(1.05);
    }

    .page-1-1bet__product-title {
      font-size: 1.4em;
      color: var(--primary-color);
      padding: 15px 10px 0;
      margin: 0;
    }

    .page-1-1bet__product-description {
      font-size: 0.95em;
      color: #ccc;
      padding: 10px 15px 15px;
      flex-grow: 1; /* Allows description to take available space */
    }

    /* Promotions Section */
    .page-1-1bet__promotion-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-1-1bet__promotion-item {
      background-color: #2a2a2a;
      border-left: 5px solid var(--accent-color);
      padding: 20px;
      border-radius: var(--border-radius-medium);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-1-1bet__promotion-title {
      color: var(--primary-color);
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.3em;
    }

    .page-1-1bet__promotion-description {
      color: #ccc;
      font-size: 1em;
    }

    /* Why Choose Us Section */
    .page-1-1bet__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-1-1bet__feature-card {
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: var(--border-radius-medium);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: background-color 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-1-1bet__feature-card:hover {
      background-color: #3a3a3a;
    }

    .page-1-1bet__feature-icon {
      width: 60px; /* Display size. Actual image will be 200x200px */
      height: 60px;
      margin-bottom: 15px;
      display: inline-block;
      object-fit: contain;
    }

    .page-1-1bet__feature-title {
      color: var(--primary-color);
      font-size: 1.25em;
      margin-bottom: 10px;
    }

    .page-1-1bet__feature-description {
      color: #ccc;
      font-size: 0.95em;
    }

    /* Providers & Payments Section */
    .page-1-1bet__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-1-1bet__logo-item {
      background-color: #2a2a2a;
      padding: 15px;
      border-radius: var(--border-radius-small);
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-1-1bet__logo-item:hover {
      transform: translateY(-3px);
    }

    .page-1-1bet__logo-image {
      width: 100%;
      height: 80px; /* Display size. Actual image will be 200x200px */
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 180px; /* Ensure logos don't get too wide on larger screens */
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-1-1bet__logo-text {
      color: var(--text-color-light);
      font-weight: bold;
      font-size: 1.1em;
      text-decoration: none;
    }

    .page-1-1bet__logo-text:hover {
      color: var(--primary-color);
    }

    /* FAQ Section */
    .page-1-1bet__faq-container {
      margin-top: 30px;
    }

    .page-1-1bet__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: var(--border-radius-medium);
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-1-1bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      color: var(--primary-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-1-1bet__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-1-1bet__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: inherit; /* Ensure h3 inherits color from parent */
    }

    .page-1-1bet__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

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

    .page-1-1bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
      font-size: 1em;
    }

    .page-1-1bet__faq-item.active .page-1-1bet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-1-1bet__hero-title {
        font-size: 2.5em;
      }

      .page-1-1bet__hero-description {
        font-size: 1em;
      }

      .page-1-1bet__heading {
        font-size: 2em;
      }

      .page-1-1bet__subheading {
        font-size: 1.5em;
      }

      .page-1-1bet__section {
        padding: 30px 15px;
      }

      .page-1-1bet__product-grid,
      .page-1-1bet__promotion-list,
      .page-1-1bet__feature-grid,
      .page-1-1bet__logo-grid {
        grid-template-columns: 1fr; /* Single column layout for most grids */
        gap: 15px;
      }

      /* List item mobile responsiveness */
      .page-1-1bet__product-card,
      .page-1-1bet__promotion-item,
      .page-1-1bet__feature-card,
      .page-1-1bet__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding for mobile to prevent overflow */
        padding-right: 15px !important; /* Adjust padding for mobile to prevent overflow */
      }
      /* Ensure list containers are also 100% width on mobile */
      .page-1-1bet__promotion-list,
      .page-1-1bet__product-grid,
      .page-1-1bet__feature-grid,
      .page-1-1bet__logo-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Reset container padding */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Image responsive optimization */
      .page-1-1bet__hero-image,
      .page-1-1bet__product-image,
      .page-1-1bet__feature-icon,
      .page-1-1bet__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-1-1bet__product-image-wrapper {
        height: auto !important; /* Allow height to adjust with aspect ratio */
        min-height: 200px !important; /* Ensure min height for image */
      }

      .page-1-1bet__floating-buttons {
        width: calc(100% - 40px);
        bottom: 15px;
        padding: 8px 15px;
        gap: 10px;
      }

      .page-1-1bet__floating-button {
        flex: 1;
        padding: 8px 15px;
        font-size: 0.95em;
      }

      .page-1-1bet__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }

      .page-1-1bet__faq-answer {
        padding: 15px !important; /* Adjusted for mobile */
      }

      .page-1-1bet__faq-item.active .page-1-1bet__faq-answer {
        padding: 15px !important;
      }

      /* Text wrapping for long content */
      p, li, h1, h2, h3, h4, h5, h6, span, a {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-1-1bet__hero-title {
        font-size: 2em;
      }

      .page-1-1bet__hero-description {
        font-size: 0.9em;
      }

      .page-1-1bet__floating-buttons {
        width: calc(100% - 30px);
        bottom: 10px;
        padding: 7px 10px;
        gap: 8px;
      }

      .page-1-1bet__floating-button {
        padding: 7px 12px;
        font-size: 0.9em;
      }
    }
  