
    .page-1bet {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f5f5f5;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-1bet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-1bet__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-1bet__section--dark {
      background-color: #2a2a2a;
      color: #ffffff;
    }

    .page-1bet__section--dark h2,
    .page-1bet__section--dark h3,
    .page-1bet__section--dark p,
    .page-1bet__section--dark a {
      color: #ffffff;
    }

    .page-1bet__hero-section {
      background-color: #1a1a1a;
      color: #ffffff;
      padding: 10px 0 60px 0; /* Minimal top padding, relies on body padding-top for header offset */
      position: relative;
      overflow: hidden;
    }

    .page-1bet__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-1bet__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-1bet__hero-content h1 {
      font-size: 2.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #f7b32b; /* Vibrant brand color */
    }

    .page-1bet__hero-content p {
      font-size: 1.1em;
      margin-bottom: 30px;
    }

    .page-1bet__cta-button {
      display: inline-block;
      background-color: #f7b32b;
      color: #1a1a1a;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-1bet__cta-button:hover {
      background-color: #e0a325;
    }

    .page-1bet__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #1a1a1a;
      padding: 10px 15px;
      display: flex;
      justify-content: space-around;
      align-items: center;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-1bet__floating-button {
      flex: 1;
      text-align: center;
      background-color: #f7b32b;
      color: #1a1a1a;
      padding: 12px 0;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      margin: 0 5px;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-1bet__floating-button:hover {
      background-color: #e0a325;
    }

    .page-1bet__about-section h2,
    .page-1bet__features-section h2,
    .page-1bet__game-categories h2,
    .page-1bet__promotions-section h2,
    .page-1bet__download-section h2,
    .page-1bet__payment-methods h2,
    .page-1bet__faq-section h2,
    .page-1bet__contact-social h2 {
      font-size: 2em;
      margin-bottom: 20px;
      color: #1a1a1a;
    }

    .page-1bet__about-section p,
    .page-1bet__download-section p {
      max-width: 800px;
      margin: 0 auto 20px auto;
    }

    .page-1bet__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-1bet__feature-item {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-1bet__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-1bet__feature-item img {
      width: 100%;
      max-width: 250px;
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-1bet__feature-item h3 {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: #f7b32b;
    }

    .page-1bet__game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-1bet__game-category-item {
      background-color: #ffffff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-1bet__game-category-item:hover {
      transform: translateY(-5px);
    }

    .page-1bet__game-category-item img {
      width: 100%;
      max-width: 300px;
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-1bet__game-category-item h3 {
      font-size: 1.2em;
      color: #1a1a1a;
    }

    .page-1bet__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-1bet__promotion-item {
      background-color: #ffffff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-1bet__promotion-item:hover {
      transform: translateY(-5px);
    }

    .page-1bet__promotion-item img {
      width: 100%;
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
    }

    .page-1bet__promotion-item h3 {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: #f7b32b;
    }

    .page-1bet__download-flex {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      margin-top: 30px;
    }

    .page-1bet__download-qr {
      text-align: center;
    }

    .page-1bet__download-qr img {
      width: 100%;
      max-width: 250px;
      height: auto;
      border: 5px solid #f7b32b;
      border-radius: 10px;
    }

    .page-1bet__download-link-group {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .page-1bet__download-link {
      background-color: #1a1a1a;
      color: #ffffff;
      padding: 12px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-1bet__download-link:hover {
      background-color: #333;
    }

    .page-1bet__download-link svg {
      fill: #f7b32b;
      width: 20px;
      height: 20px;
    }

    .page-1bet__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-1bet__payment-item {
      background-color: #ffffff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
      box-sizing: border-box;
    }

    .page-1bet__payment-item img {
      width: 100%;
      max-width: 100px;
      height: auto;
      margin-bottom: 10px;
    }

    .page-1bet__payment-item h3 {
      font-size: 1.1em;
      color: #1a1a1a;
    }

    .page-1bet__faq-list {
      margin-top: 30px;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-1bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f7b32b;
      color: #1a1a1a;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s ease;
    }

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

    .page-1bet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevents text from blocking click event on parent */
      color: #1a1a1a;
    }

    .page-1bet__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from blocking click event on parent */
    }

    .page-1bet__faq-item.active .page-1bet__faq-toggle {
      transform: rotate(45deg);
    }

    .page-1bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #fefefe;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-1bet__faq-answer p {
      margin: 0;
      color: #333;
    }

    .page-1bet__contact-social .page-1bet__social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .page-1bet__social-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #1a1a1a;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-1bet__social-link:hover {
      color: #f7b32b;
    }

    .page-1bet__social-link svg {
      width: 24px;
      height: 24px;
      fill: #f7b32b;
      transition: fill 0.3s ease;
    }

    .page-1bet__social-link:hover svg {
      fill: #e0a325;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-1bet__hero-content h1 {
        font-size: 2em;
      }

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

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

      .page-1bet__about-section h2,
      .page-1bet__features-section h2,
      .page-1bet__game-categories h2,
      .page-1bet__promotions-section h2,
      .page-1bet__download-section h2,
      .page-1bet__payment-methods h2,
      .page-1bet__faq-section h2,
      .page-1bet__contact-social h2 {
        font-size: 1.8em;
      }

      .page-1bet__features-grid,
      .page-1bet__game-categories-grid,
      .page-1bet__promotions-grid,
      .page-1bet__payment-methods-grid {
        grid-template-columns: 1fr;
      }

      .page-1bet__feature-item,
      .page-1bet__game-category-item,
      .page-1bet__promotion-item,
      .page-1bet__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-1bet__feature-item h3,
      .page-1bet__game-category-item h3,
      .page-1bet__promotion-item h3,
      .page-1bet__payment-item h3 {
        font-size: 1.1em;
      }

      .page-1bet__feature-item img,
      .page-1bet__game-category-item img,
      .page-1bet__promotion-item img,
      .page-1bet__download-qr img,
      .page-1bet__payment-item img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-1bet__faq-question {
        padding: 12px 15px;
      }

      .page-1bet__faq-question h3 {
        font-size: 1em;
      }

      .page-1bet__faq-answer {
        padding: 0 10px;
      }

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

      .page-1bet__floating-buttons {
        padding: 8px 10px;
      }

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

      .page-1bet__download-link-group {
        flex-direction: column;
        align-items: center;
      }

      .page-1bet__download-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
      }

      .page-1bet__social-links {
        flex-direction: column;
        gap: 10px;
      }
    }

    @media (max-width: 480px) {
      .page-1bet__hero-content h1 {
        font-size: 1.8em;
      }
      .page-1bet__floating-button {
        font-size: 0.85em;
      }
    }
  