
    :root {
      --page-21-88__primary-color: #e44d26;
      --page-21-88__secondary-color: #333;
      --page-21-88__accent-color: #f7931e;
      --page-21-88__text-color-light: #f0f0f0;
      --page-21-88__text-color-dark: #1a1a1a;
      --page-21-88__background-dark: #121212;
      --page-21-88__background-medium: #1a1a1a;
      --page-21-88__background-light: #282828;
      --page-21-88__border-color: #444;
    }

    .page-21-88 {
      font-family: 'Arial', sans-serif;
      color: var(--page-21-88__text-color-light);
      background-color: var(--page-21-88__background-dark);
      line-height: 1.6;
    }

    .page-21-88__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-21-88__hero-section {
      background: url('[GALLERY:hero:1920x1080:online_betting,casino,promotions]') no-repeat center center/cover;
      text-align: center;
      padding: 100px 20px;
      color: var(--page-21-88__text-color-light);
      position: relative;
      overflow: hidden;
      padding-top: calc(var(--header-offset, 122px) + 10px); /* Adjust for header, plus a small decorative padding */
    }

    .page-21-88__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      z-index: 1;
    }

    .page-21-88__hero-content {
      position: relative;
      z-index: 2;
    }

    .page-21-88__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-21-88__primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-21-88__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-21-88__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-21-88__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: center;
      color: var(--page-21-88__text-color-light);
    }

    .page-21-88__button--primary {
      background-color: var(--page-21-88__primary-color);
    }

    .page-21-88__button--primary:hover {
      background-color: #c43c1e;
      transform: translateY(-2px);
    }

    .page-21-88__button--secondary {
      background-color: var(--page-21-88__accent-color);
    }

    .page-21-88__button--secondary:hover {
      background-color: #d87e0e;
      transform: translateY(-2px);
    }

    .page-21-88__heading-primary {
      font-size: 2.5em;
      color: var(--page-21-88__primary-color);
      text-align: center;
      margin-bottom: 40px;
      text-transform: uppercase;
    }

    .page-21-88__heading-secondary {
      font-size: 2em;
      color: var(--page-21-88__accent-color);
      margin-bottom: 20px;
      text-align: center;
    }

    .page-21-88__text-center {
      text-align: center;
      margin-bottom: 30px;
    }

    .page-21-88__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-21-88__card {
      background-color: var(--page-21-88__background-medium);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-21-88__card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-21-88__card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-21-88__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
      display: block;
    }

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

    .page-21-88__card-title {
      font-size: 1.5em;
      color: var(--page-21-88__accent-color);
      margin-bottom: 10px;
    }

    .page-21-88__card-description {
      font-size: 0.95em;
      color: var(--page-21-88__text-color-light);
      margin-bottom: 15px;
    }

    .page-21-88__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-21-88__promotion-card {
      background-color: var(--page-21-88__background-medium);
      border-radius: 12px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      padding: 25px;
      transition: transform 0.3s ease;
      border-left: 5px solid var(--page-21-88__primary-color);
    }

    .page-21-88__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-21-88__promotion-title {
      font-size: 1.8em;
      color: var(--page-21-88__primary-color);
      margin-bottom: 15px;
    }

    .page-21-88__promotion-description {
      font-size: 1em;
      color: var(--page-21-88__text-color-light);
      margin-bottom: 20px;
    }

    .page-21-88__faq-section {
      background-color: var(--page-21-88__background-light);
      border-top: 1px solid var(--page-21-88__border-color);
    }

    .page-21-88__faq-item {
      background-color: var(--page-21-88__background-medium);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-21-88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-21-88__accent-color);
      border-bottom: 1px solid var(--page-21-88__border-color);
      transition: background-color 0.3s ease;
    }

    .page-21-88__faq-question:hover {
      background-color: #2e2e2e;
    }

    .page-21-88__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-21-88__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
      transition: transform 0.3s ease;
    }

    .page-21-88__faq-item.active .page-21-88__faq-toggle {
      transform: rotate(45deg);
    }

    .page-21-88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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-21-88__text-color-light);
      font-size: 1em;
    }

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

    .page-21-88__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-21-88__floating-button {
      background-color: var(--page-21-88__primary-color);
      color: var(--page-21-88__text-color-light);
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
    }

    .page-21-88__floating-button--login {
      background-color: var(--page-21-88__accent-color);
    }

    .page-21-88__floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
    }

    .page-21-88__floating-button--register:hover {
      background-color: #c43c1e;
    }

    .page-21-88__floating-button--login:hover {
      background-color: #d87e0e;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-21-88__hero-section {
        padding: 80px 15px;
        padding-top: calc(var(--header-offset, 122px) + 10px);
      }

      .page-21-88__hero-title {
        font-size: 2.5em;
      }

      .page-21-88__hero-subtitle {
        font-size: 1.2em;
      }

      .page-21-88__button-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-21-88__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-21-88__section {
        padding: 30px 15px;
      }

      .page-21-88__heading-primary {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-21-88__heading-secondary {
        font-size: 1.6em;
      }

      .page-21-88__card-title {
        font-size: 1.3em;
      }

      .page-21-88__card-image-wrapper,
      .page-21-88__card-image {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-21-88__promotions-grid,
      .page-21-88__grid {
        grid-template-columns: 1fr;
      }

      .page-21-88__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-21-88__faq-answer {
        padding: 0 20px;
      }

      .page-21-88__faq-item.active .page-21-88__faq-answer {
        padding: 15px 20px !important;
      }

      .page-21-88__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
      }

      .page-21-88__floating-button {
        padding: 10px 18px;
        font-size: 0.9em;
      }

      /* List item specific responsive styles */
      .page-21-88__feature-list,
      .page-21-88__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important; /* Adjust if list items have internal padding */
        padding-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-21-88__feature-list {
        padding: 0 !important;
      }
    }

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

      .page-21-88__hero-subtitle {
        font-size: 1em;
      }

      .page-21-88__heading-primary {
        font-size: 1.8em;
      }

      .page-21-88__heading-secondary {
        font-size: 1.4em;
      }
    }
  