
    .page-8day {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f0f2f5;
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Adjust for fixed header */
    }

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

    .page-8day__hero-section {
      text-align: center;
      background-color: #0d1a2b;
      color: #fff;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 30px;
    }

    .page-8day__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('[GALLERY:hero:1920x1080:betting,background,abstract]') no-repeat center center/cover;
      opacity: 0.2;
      z-index: 1;
    }

    .page-8day__hero-content {
      position: relative;
      z-index: 2;
    }

    .page-8day__title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffd700;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8day__subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8day__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .page-8day__button {
      background-color: #ffd700;
      color: #0d1a2b;
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-8day__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-8day__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-8day__floating-button {
      background-color: #007bff;
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      text-align: center;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-8day__floating-button--register {
      background-color: #28a745;
    }

    .page-8day__floating-button--login {
      background-color: #007bff;
    }

    .page-8day__floating-button:hover {
      transform: translateY(-3px);
      opacity: 0.9;
    }

    .page-8day__section {
      background-color: #fff;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-8day__section-title {
      font-size: 2em;
      color: #0d1a2b;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8day__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #ffd700;
      border-radius: 2px;
    }

    .page-8day__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .page-8day__game-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8day__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-8day__game-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

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

    .page-8day__game-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
      box-sizing: border-box;
    }

    .page-8day__game-title {
      font-size: 1.3em;
      color: #0d1a2b;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8day__game-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-8day__game-provider-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .page-8day__provider-item {
      background-color: #e9ecef;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9em;
      color: #495057;
      font-weight: 600;
      white-space: nowrap;
      box-sizing: border-box;
    }

    .page-8day__promotion-card {
      display: flex;
      flex-direction: column;
      background-color: #fefefe;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8day__promotion-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .page-8day__promotion-image-wrapper {
      width: 100%;
      height: 220px;
      overflow: hidden;
      box-sizing: border-box;
    }

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

    .page-8day__promotion-content {
      padding: 20px;
    }

    .page-8day__promotion-title {
      font-size: 1.5em;
      color: #0d1a2b;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8day__promotion-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

    .page-8day__read-more-text {
      color: #007bff;
      font-weight: bold;
      text-decoration: none;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .page-8day__read-more-text:hover {
      color: #0056b3;
    }

    .page-8day__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      justify-content: center;
    }

    .page-8day__payment-item {
      text-align: center;
      padding: 15px;
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100px;
      box-sizing: border-box;
    }

    .page-8day__payment-item:hover {
      transform: translateY(-5px);
    }

    .page-8day__payment-icon-wrapper {
      width: 80px;
      height: 50px;
      margin-bottom: 10px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

    .page-8day__payment-icon {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .page-8day__payment-name {
      font-size: 0.9em;
      color: #333;
      font-weight: 600;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }

    .page-8day__faq-section {
      padding: 40px 20px;
      background-color: #f8f9fa;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-8day__faq-item {
      background-color: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-8day__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      font-size: 1.1em;
      font-weight: bold;
      color: #0d1a2b;
      cursor: pointer;
      user-select: none;
      background-color: #f0f0f0;
      transition: background-color 0.3s ease;
    }

    .page-8day__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-8day__faq-question h3 {
      margin: 0;
      pointer-events: none;
      flex-grow: 1;
    }

    .page-8day__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
      margin-left: 15px;
      color: #007bff;
    }

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

    .page-8day__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      opacity: 0;
      box-sizing: border-box;
    }

    .page-8day__faq-item.active .page-8day__faq-answer {
      max-height: 2000px !important;
      padding: 20px !important;
      opacity: 1;
    }

    .page-8day__social-media-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .page-8day__social-media-item {
      background-color: #e9ecef;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9em;
      color: #495057;
      font-weight: 600;
      white-space: nowrap;
      box-sizing: border-box;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-8day__title {
        font-size: 2em;
      }

      .page-8day__subtitle {
        font-size: 1.1em;
      }

      .page-8day__button-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-8day__button {
        width: 100%;
        max-width: 250px;
      }

      .page-8day__section-title {
        font-size: 1.8em;
      }

      .page-8day__game-grid {
        grid-template-columns: 1fr;
      }

      .page-8day__game-image-wrapper {
        height: 180px;
      }

      .page-8day__promotion-image-wrapper {
        height: 180px;
      }

      .page-8day__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-8day__payment-item {
        padding: 10px;
        min-height: 80px;
      }

      .page-8day__payment-icon-wrapper {
        width: 60px;
        height: 40px;
        margin-bottom: 5px;
      }

      .page-8day__payment-name {
        font-size: 0.8em;
      }

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

      .page-8day__faq-answer {
        padding: 0 15px;
      }

      .page-8day__faq-item.active .page-8day__faq-answer {
        padding: 15px !important;
      }

      .page-8day__game-provider-list,
      .page-8day__social-media-list {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
      }

      .page-8day__provider-item,
      .page-8day__social-media-item {
        padding: 6px 10px;
        font-size: 0.85em;
      }

      .page-8day__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-8day__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
      }

      .page-8day__container {
        padding: 0 10px;
      }

      /* List item responsive styles */
      .page-8day__game-provider-list .page-8day__provider-item,
      .page-8day__social-media-list .page-8day__social-media-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 8px 10px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8day__game-provider-list,
      .page-8day__social-media-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two columns for better use of space */
        gap: 10px;
      }
    }

    @media (max-width: 480px) {
      .page-8day__title {
        font-size: 1.8em;
      }
      .page-8day__subtitle {
        font-size: 1em;
      }
      .page-8day__section-title {
        font-size: 1.6em;
      }
      .page-8day__game-provider-list,
      .page-8day__social-media-list {
        grid-template-columns: 1fr; /* Single column for very small screens */
      }
    }
  