
    :root {
      --page-2233-com-primary-color: #e44d26; /* A vibrant orange-red, common in betting sites */
      --page-2233-com-secondary-color: #333;
      --page-2233-com-accent-color: #f7b731; /* Golden yellow */
      --page-2233-com-background-dark: #1a1a1a;
      --page-2233-com-background-light: #f5f5f5;
      --page-2233-com-text-color-light: #ffffff;
      --page-2233-com-text-color-dark: #333333;
      --page-2233-com-border-radius: 8px;
      --page-2233-com-padding-medium: 20px;
      --page-2233-com-padding-large: 40px;
    }

    /* Base styles for the page content */
    .page-2233-com {
      font-family: 'Arial', sans-serif;
      color: var(--page-2233-com-text-color-dark);
      line-height: 1.6;
      background-color: var(--page-2233-com-background-light);
      overflow-x: hidden; /* Prevent horizontal scroll from fixed buttons */
    }

    /* Fixed Header Offset - small padding for the first section */
    .page-2233-com__hero-section {
        padding-top: 10px; /* Small decorative padding, assuming body padding handles header offset */
    }

    /* Floating Buttons */
    .page-2233-com__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-2233-com__floating-button {
      background-color: var(--page-2233-com-primary-color);
      color: var(--page-2233-com-text-color-light);
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* For potential external link */
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }

    .page-2233-com__floating-button:hover {
      background-color: #c0392b; /* Darker shade of primary */
      transform: translateY(-2px);
    }
    
    .page-2233-com__floating-button--secondary {
      background-color: var(--page-2233-com-accent-color);
      color: var(--page-2233-com-text-color-dark);
    }

    .page-2233-com__floating-button--secondary:hover {
      background-color: #f0c419;
    }

    /* Brand Keyword Section */
    .page-2233-com__brand-header {
      text-align: center;
      padding: 15px 0;
      background-color: var(--page-2233-com-background-dark);
      color: var(--page-2233-com-text-color-light);
      position: sticky;
      top: 0; /* Stays at the top, below shared header */
      z-index: 999; /* Below floating buttons, above main content */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-2233-com__brand-title {
      margin: 0;
      font-size: 2.2em;
      font-weight: bold;
      letter-spacing: 1px;
      color: var(--page-2233-com-accent-color);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Hero Section */
    .page-2233-com__hero-section {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('[GALLERY:hero:1920x1080:casino,betting,slots,mobile_gaming]') no-repeat center center/cover;
      color: var(--page-2233-com-text-color-light);
      text-align: center;
      padding: var(--page-2233-com-padding-large) var(--page-2233-com-padding-medium);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      box-sizing: border-box;
    }

    .page-2233-com__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-2233-com-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-2233-com__hero-subtitle {
      font-size: 1.3em;
      max-width: 800px;
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.9);
    }

    .page-2233-com__hero-cta {
      background-color: var(--page-2233-com-primary-color);
      color: var(--page-2233-com-text-color-light);
      padding: 15px 30px;
      border-radius: var(--page-2233-com-border-radius);
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
    }

    .page-2233-com__hero-cta:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-2233-com__section {
      padding: var(--page-2233-com-padding-large) var(--page-2233-com-padding-medium);
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-2233-com__section--dark {
      background-color: var(--page-2233-com-background-dark);
      color: var(--page-2233-com-text-color-light);
    }

    .page-2233-com__section-title {
      font-size: 2.2em;
      margin-bottom: 25px;
      color: var(--page-2233-com-primary-color);
    }

    .page-2233-com__section--dark .page-2233-com__section-title {
      color: var(--page-2233-com-accent-color);
    }

    .page-2233-com__section-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Product Grid */
    .page-2233-com__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-items: center; /* Center items in the grid */
    }

    .page-2233-com__product-card {
      background-color: #ffffff;
      border-radius: var(--page-2233-com-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 350px; /* Limit card width */
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-2233-com__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .page-2233-com__product-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #eee;
    }

    .page-2233-com__product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; /* Remove extra space below image */
    }

    .page-2233-com__product-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-2233-com__product-title {
      font-size: 1.5em;
      color: var(--page-2233-com-primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-2233-com__product-description {
      font-size: 0.95em;
      color: var(--page-2233-com-secondary-color);
      margin-bottom: 20px;
    }

    .page-2233-com__product-button {
      background-color: var(--page-2233-com-accent-color);
      color: var(--page-2233-com-text-color-dark);
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-2233-com__product-button:hover {
      background-color: #f0c419;
    }

    /* Promotions Section */
    .page-2233-com__promotion-list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-2233-com__promotion-item {
      background-color: #ffffff;
      border-radius: var(--page-2233-com-border-radius);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: left;
      flex: 1;
      min-width: 280px;
      max-width: 450px;
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

    .page-2233-com__promotion-item:hover {
      transform: translateY(-5px);
    }

    .page-2233-com__promotion-title {
      color: var(--page-2233-com-primary-color);
      font-size: 1.6em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-2233-com__promotion-description {
      color: var(--page-2233-com-secondary-color);
      font-size: 1em;
      margin-bottom: 15px;
    }

    .page-2233-com__promotion-details {
      color: var(--page-2233-com-text-color-dark);
      font-weight: bold;
      font-size: 0.9em;
    }

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

    .page-2233-com__feature-card {
      background-color: #ffffff;
      border-radius: var(--page-2233-com-border-radius);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-2233-com__feature-card:hover {
      transform: translateY(-5px);
    }

    .page-2233-com__feature-icon {
      width: 200px; /* Min size 200x200 */
      height: 200px;
      margin: 0 auto 15px auto;
      object-fit: contain;
      display: block;
    }

    .page-2233-com__feature-title {
      color: var(--page-2233-com-primary-color);
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-2233-com__feature-description {
      color: var(--page-2233-com-secondary-color);
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-2233-com__faq-container {
      max-width: 800px;
      margin: 30px auto 0 auto;
      text-align: left;
    }

    .page-2233-com__faq-item {
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: var(--page-2233-com-border-radius);
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-2233-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-2233-com-background-dark);
      color: var(--page-2233-com-text-color-light);
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: var(--page-2233-com-border-radius);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-2233-com__faq-question:hover {
      background-color: #2a2a2a;
    }

    .page-2233-com__faq-question h3 {
      margin: 0;
      color: var(--page-2233-com-accent-color);
      flex-grow: 1;
      pointer-events: none; /* Prevents h3 from blocking click event */
    }

    .page-2233-com__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents toggle from blocking click event */
    }

    .page-2233-com__faq-item.active .page-2233-com__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar, or just rotate 180 for '-' */
    }

    .page-2233-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-2233-com-text-color-dark);
      background-color: #fcfcfc;
      border-bottom-left-radius: var(--page-2233-com-border-radius);
      border-bottom-right-radius: var(--page-2233-com-border-radius);
    }

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

    /* Call to Action Section */
    .page-2233-com__cta-section {
      background-color: var(--page-2233-com-primary-color);
      color: var(--page-2233-com-text-color-light);
      padding: var(--page-2233-com-padding-large) var(--page-2233-com-padding-medium);
      text-align: center;
      box-sizing: border-box;
    }

    .page-2233-com__cta-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--page-2233-com-text-color-light);
    }

    .page-2233-com__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-2233-com__floating-buttons {
        width: calc(100% - 40px);
        gap: 10px;
        padding: 8px 15px;
        bottom: 15px;
      }

      .page-2233-com__floating-button {
        padding: 10px 20px;
        font-size: 14px;
        flex: 1;
      }

      .page-2233-com__brand-title {
        font-size: 1.8em;
      }

      .page-2233-com__hero-title {
        font-size: 2em;
      }

      .page-2233-com__hero-subtitle {
        font-size: 1em;
      }

      .page-2233-com__section {
        padding: var(--page-2233-com-padding-medium) 15px;
      }

      .page-2233-com__section-title {
        font-size: 1.8em;
      }

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

      .page-2233-com__product-grid {
        grid-template-columns: 1fr; /* Stack products on mobile */
      }

      .page-2233-com__product-card {
        max-width: 100%;
        padding: 0; /* Reset internal padding if needed, rely on content padding */
      }
      
      .page-2233-com__product-content {
          padding: 15px; /* Adjust content padding */
      }

      .page-2233-com__promotion-list {
        flex-direction: column;
      }

      .page-2233-com__promotion-item {
        max-width: 100%;
        padding: 20px;
      }
      
      .page-2233-com__features-grid {
        grid-template-columns: 1fr;
      }

      .page-2233-com__feature-card {
        padding: 25px;
      }

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

      .page-2233-com__faq-question h3 {
        font-size: 1.1em;
      }

      .page-2233-com__faq-toggle {
        font-size: 1.2em;
      }

      .page-2233-com__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile */
      }

      .page-2233-com__cta-title {
        font-size: 2em;
      }

      .page-2233-com__cta-description {
        font-size: 1em;
      }
      
      /* Image responsive */
      .page-2233-com__product-image,
      .page-2233-com__feature-icon {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }

      .page-2233-com__product-image-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
          height: 180px; /* Slightly adjust height for smaller screens */
      }

      /* List item responsive - applies to promotion and product grid items */
      .page-2233-com__promotion-item,
      .page-2233-com__product-card,
      .page-2233-com__feature-card,
      .page-2233-com__faq-item {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
      }
      
      .page-2233-com__promotion-list,
      .page-2233-com__product-grid,
      .page-2233-com__features-grid,
      .page-2233-com__faq-container {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
      }

      /* Word wrap for all content */
      .page-2233-com p,
      .page-2233-com h1,
      .page-2233-com h2,
      .page-2233-com h3,
      .page-2233-com h4,
      .page-2233-com li,
      .page-2233-com button,
      .page-2233-com div {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }
  