
    :root {
      --page-4tw-primary-bg: #1a1a1a;
      --page-4tw-secondary-bg: #2a2a2a;
      --page-4tw-accent-color: #ffcc00; /* Gold-like for betting */
      --page-4tw-text-color: #f0f0f0;
      --page-4tw-light-text: #cccccc;
      --page-4tw-border-color: #444444;
      --page-4tw-success-color: #4CAF50;
      --page-4tw-error-color: #f44336;
      --header-offset: 122px; /* Default value if not set by shared CSS */
    }

    .page-4tw {
      font-family: 'Arial', sans-serif;
      color: var(--page-4tw-text-color);
      background-color: var(--page-4tw-primary-bg);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for sticky buttons */
    }

    /* Fallback for header offset if shared CSS doesn't apply it to body */
    .page-4tw.page-content:first-child {
        padding-top: var(--header-offset, 122px);
    }

    .page-4tw__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-4tw__section--dark {
      background-color: var(--page-4tw-secondary-bg);
    }

    .page-4tw__heading {
      text-align: center;
      color: var(--page-4tw-accent-color);
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-4tw__subheading {
      text-align: center;
      color: var(--page-4tw-text-color);
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-4tw__paragraph {
      text-align: justify;
      margin-bottom: 15px;
      font-size: 1em;
      color: var(--page-4tw-light-text);
    }

    .page-4tw__button {
      display: inline-block;
      background-color: var(--page-4tw-accent-color);
      color: var(--page-4tw-primary-bg);
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      text-align: center;
      cursor: pointer;
      border: none;
      font-size: 1em;
    }

    .page-4tw__button:hover {
      background-color: #e6b800;
    }

    /* Hero Section */
    .page-4tw__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 400px;
      padding-top: 10px; /* Small decorative padding, assuming body already has header offset */
      padding-bottom: 40px;
    }

    .page-4tw__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.6); /* Darken background for text visibility */
    }

    .page-4tw__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-4tw__hero-title {
      color: var(--page-4tw-accent-color);
      font-size: 3em;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-4tw__hero-text {
      color: var(--page-4tw-text-color);
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    /* Floating Register/Login Buttons */
    .page-4tw__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    }

    .page-4tw__floating-button {
      flex: 1;
      margin: 0 10px;
      padding: 15px 10px;
      font-size: 1.1em;
      border-radius: 5px;
      background-color: var(--page-4tw-accent-color);
      color: var(--page-4tw-primary-bg);
      text-align: center;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      border: none; /* Ensure no default button border */
    }

    .page-4tw__floating-button--register {
      background-color: var(--page-4tw-success-color);
    }

    .page-4tw__floating-button--register:hover {
      background-color: #45a049;
    }

    .page-4tw__floating-button--login {
      background-color: var(--page-4tw-accent-color);
    }

    .page-4tw__floating-button--login:hover {
      background-color: #e6b800;
    }

    /* Product Showcase */
    .page-4tw__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-4tw__product-card {
      background-color: var(--page-4tw-secondary-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      border: 1px solid var(--page-4tw-border-color);
    }

    .page-4tw__product-card:hover {
      transform: translateY(-5px);
    }

    .page-4tw__product-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

    .page-4tw__product-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      object-fit: cover;
      display: block;
    }

    .page-4tw__product-content {
      padding: 20px;
    }

    .page-4tw__product-title {
      color: var(--page-4tw-accent-color);
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-4tw__product-description {
      color: var(--page-4tw-light-text);
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    /* Promotions */
    .page-4tw__promotions-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
      padding: 0;
      list-style: none;
    }

    .page-4tw__promotion-item {
      background-color: var(--page-4tw-secondary-bg);
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      gap: 20px;
      border: 1px solid var(--page-4tw-border-color);
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-4tw__promotion-icon-wrapper {
        min-width: 200px; /* Enforce minimum image size */
        height: 150px;
        overflow: hidden;
        border-radius: 8px;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--page-4tw-primary-bg); /* Placeholder background */
        box-sizing: border-box;
    }

    .page-4tw__promotion-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: cover;
        display: block;
    }

    .page-4tw__promotion-content {
      flex-grow: 1;
    }

    .page-4tw__promotion-title {
      color: var(--page-4tw-accent-color);
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-4tw__promotion-description {
      color: var(--page-4tw-light-text);
      font-size: 1em;
    }

    /* FAQ Section */
    .page-4tw__faq-section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 900px; /* Narrower for FAQs */
    }

    .page-4tw__faq-item {
      background-color: var(--page-4tw-secondary-bg);
      border: 1px solid var(--page-4tw-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-4tw__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-4tw-secondary-bg);
      color: var(--page-4tw-text-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-4tw__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-4tw__faq-question h3 {
      margin: 0;
      color: var(--page-4tw-text-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
      text-align: left;
    }

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

    .page-4tw__faq-item.active .page-4tw__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' */
    }

    .page-4tw__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding matches question */
      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-4tw-light-text);
      font-size: 1em;
      text-align: justify;
    }

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

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-4tw__section {
        padding: 30px 15px;
      }

      .page-4tw__heading {
        font-size: 2em;
      }

      .page-4tw__subheading {
        font-size: 1.5em;
      }

      .page-4tw__hero-title {
        font-size: 2.2em;
      }

      .page-4tw__hero-text {
        font-size: 1em;
      }

      .page-4tw__floating-buttons {
        padding: 8px 0;
      }

      .page-4tw__floating-button {
        padding: 12px 5px;
        font-size: 1em;
        margin: 0 5px;
      }

      .page-4tw__product-grid {
        grid-template-columns: 1fr;
      }

      .page-4tw__product-card {
        margin: 0 auto;
        max-width: 400px;
      }

      .page-4tw__promotion-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
      }

      .page-4tw__promotion-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        height: 180px; /* Adjust height for mobile */
        margin-bottom: 15px;
      }
      
      .page-4tw__promotion-image {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-4tw__promotion-title {
        font-size: 1.4em;
      }

      .page-4tw__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-4tw__faq-answer {
        padding: 0 20px;
      }

      .page-4tw__faq-item.active .page-4tw__faq-answer {
        padding: 15px 20px !important;
      }
      
      /* List item responsiveness */
      .page-4tw__promotions-list,
      .page-4tw__promotions-list li {
        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: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    @media (max-width: 480px) {
        .page-4tw__hero-title {
            font-size: 1.8em;
        }
        .page-4tw__hero-text {
            font-size: 0.9em;
        }
        .page-4tw__floating-button {
            font-size: 0.9em;
            padding: 10px 5px;
        }
        .page-4tw__heading {
            font-size: 1.8em;
        }
        .page-4tw__subheading {
            font-size: 1.3em;
        }
    }
  