
    :root {
      --primary-color: #e44d26; /* A vibrant orange-red, common in betting sites */
      --secondary-color: #333;
      --text-color: #fff;
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --accent-color: #00bcd4; /* A contrasting blue for highlights */
      --border-radius-sm: 5px;
      --border-radius-md: 10px;
      --button-hover-color: #ff6a3d;
      --faq-border-color: #444;
    }

    /* Base styles for the page-365beta container */
    .page-365beta {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll due to fixed elements */
      padding-top: 10px; /* Small top padding for visual separation from fixed header, assuming body padding is handled */
    }

    /* Hero Section */
    .page-365beta__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust height for mobile focus */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-365beta__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .page-365beta__hero-content {
      position: relative;
      z-index: 1;
      max-width: 90%;
      background: rgba(0, 0, 0, 0.6);
      padding: 25px 20px;
      border-radius: var(--border-radius-md);
    }

    .page-365beta__hero-title {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: var(--primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: bold;
    }

    .page-365beta__hero-subtitle {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #ccc;
      max-width: 600px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-365beta__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--text-color);
      padding: 12px 25px;
      border-radius: var(--border-radius-sm);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-365beta__cta-button:hover {
      background-color: var(--button-hover-color);
    }

    /* Floating Buttons (Register/Login) */
    .page-365beta__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-365beta__floating-button {
      background-color: var(--accent-color);
      color: var(--background-dark);
      padding: 12px 20px;
      border-radius: 50px; /* Pill shape */
      text-decoration: none;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      min-width: 120px; /* Ensure buttons have a minimum width */
    }

    .page-365beta__floating-button:hover {
      background-color: #00a0b8;
      transform: translateY(-2px);
    }

    .page-365beta__floating-button--register {
      background-color: var(--primary-color);
      color: var(--text-color);
    }

    .page-365beta__floating-button--register:hover {
      background-color: var(--button-hover-color);
    }

    /* Section Styling */
    .page-365beta__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--background-light);
      border-radius: var(--border-radius-md);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-365beta__section-title {
      font-size: 2em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-365beta__section-description {
      text-align: center;
      margin-bottom: 40px;
      color: #ccc;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Product Display */
    .page-365beta__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      justify-content: center; /* Center items in the grid */
      align-items: start;
    }

    .page-365beta__product-item {
      background-color: var(--background-dark);
      border-radius: var(--border-radius-md);
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%; /* Ensure all items have same height */
    }

    .page-365beta__product-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .page-365beta__product-image {
      width: 100%;
      height: 200px; /* Fixed height for images */
      object-fit: cover;
      border-bottom: 2px solid var(--primary-color);
      max-width: 100%; /* Responsive image */
    }

    .page-365beta__product-content {
      padding: 15px;
      flex-grow: 1; /* Allow content to grow */
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-365beta__product-title {
      font-size: 1.3em;
      color: var(--accent-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-365beta__product-description {
      font-size: 0.9em;
      color: #bbb;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-365beta__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .page-365beta__promotion-card {
      background-color: var(--background-dark);
      border-radius: var(--border-radius-md);
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-365beta__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .page-365beta__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
    }

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

    .page-365beta__promotion-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-365beta__promotion-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-365beta__promotion-link-wrapper {
      text-align: center;
    }

    /* About Section */
    .page-365beta__about-content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
      justify-content: center;
    }

    .page-365beta__about-text {
      flex: 1 1 45%;
      min-width: 300px;
      color: #ccc;
    }

    .page-365beta__about-image-wrapper {
      flex: 1 1 45%;
      min-width: 300px;
      text-align: center;
    }

    .page-365beta__about-image {
      width: 100%;
      height: auto;
      border-radius: var(--border-radius-md);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      max-width: 600px;
      max-height: 400px;
      object-fit: cover;
      display: block; /* Remove extra space below image */
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section */
    .page-365beta__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-365beta__faq-item {
      background-color: var(--background-dark);
      margin-bottom: 15px;
      border-radius: var(--border-radius-md);
      overflow: hidden;
      border: 1px solid var(--faq-border-color);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

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

    .page-365beta__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-365beta__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-365beta__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      color: var(--accent-color);
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
    }

    .page-365beta__faq-item.active .page-365beta__faq-toggle {
      transform: rotate(45deg); /* Plus to X (or minus) */
    }

    .page-365beta__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: #bbb;
      font-size: 0.95em;
    }

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

    /* Call to Action Bottom */
    .page-365beta__cta-bottom {
      text-align: center;
      padding: 50px 20px;
      background-color: var(--primary-color);
      border-radius: var(--border-radius-md);
      margin-top: 40px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-365beta__cta-bottom h2 {
      font-size: 2.5em;
      color: var(--text-color);
      margin-bottom: 20px;
    }

    .page-365beta__cta-bottom p {
      font-size: 1.2em;
      color: #fff;
      margin-bottom: 30px;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-365beta__product-grid,
      .page-365beta__promotion-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-365beta__hero-section {
        height: 70vh;
      }

      .page-365beta__hero-title {
        font-size: 1.8em;
      }

      .page-365beta__hero-subtitle {
        font-size: 1em;
      }

      .page-365beta__section {
        padding: 30px 15px;
        margin-bottom: 15px;
      }

      .page-365beta__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }

      .page-365beta__section-description {
        margin-bottom: 30px;
      }

      .page-365beta__product-grid,
      .page-365beta__promotion-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
      }

      .page-365beta__about-text,
      .page-365beta__about-image-wrapper {
        flex: 1 1 100%;
        min-width: unset;
      }

      .page-365beta__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Buttons side-by-side on mobile */
        gap: 8px;
      }

      .page-365beta__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: unset;
        flex: 1; /* Distribute space evenly */
      }

      /* List item responsive requirements (applied to product/promotion cards as they act as list items) */
      .page-365beta__product-item,
      .page-365beta__promotion-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-365beta__product-grid,
      .page-365beta__promotion-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

      .page-365beta__faq-answer {
        padding: 0 15px;
      }

      .page-365beta__faq-item.active .page-365beta__faq-answer {
        padding: 15px !important;
      }

      .page-365beta__cta-bottom h2 {
        font-size: 1.8em;
      }

      .page-365beta__cta-bottom p {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-365beta__hero-title {
        font-size: 1.5em;
      }

      .page-365beta__hero-subtitle {
        font-size: 0.9em;
      }

      .page-365beta__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-365beta__floating-buttons {
        bottom: 10px;
        right: 10px;
      }

      .page-365beta__floating-button {
        padding: 8px 12px;
        font-size: 0.85em;
      }
    }
  