
    :root {
      --day8-primary-color: #FFD700; /* Gold */
      --day8-secondary-color: #008000; /* Green */
      --day8-dark-bg: #1a1a1a; /* Dark background */
      --day8-light-text: #ffffff; /* White text */
      --day8-accent-color: #FF4500; /* OrangeRed */
      --day8-gray-text: #cccccc;
      --day8-border-color: #333333;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--day8-light-text);
      background-color: var(--day8-dark-bg);
      margin: 0;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

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

    .page-day-8__hero-section {
      text-align: center;
      padding: 60px 20px 40px;
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('[GALLERY:hero:1920x1080:day8,gaming,promotion]') no-repeat center center/cover;
      border-radius: 10px;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
    }

    .page-day-8__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
      z-index: 1;
    }

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

    .page-day-8__hero-title {
      font-size: 2.8em;
      color: var(--day8-primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-day-8__hero-subtitle {
      font-size: 1.3em;
      color: var(--day8-light-text);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-day-8__cta-button {
      display: inline-block;
      background-color: var(--day8-accent-color);
      color: var(--day8-light-text);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-day-8__cta-button:hover {
      background-color: #e63900;
    }

    .page-day-8__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: #222222;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-day-8__section-title {
      text-align: center;
      font-size: 2em;
      color: var(--day8-primary-color);
      margin-bottom: 30px;
      padding-bottom: 10px;
      position: relative;
    }

    .page-day-8__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--day8-accent-color);
      border-radius: 2px;
    }

    .page-day-8__product-grid,
    .page-day-8__promotion-grid,
    .page-day-8__news-grid,
    .page-day-8__payment-grid,
    .page-day-8__provider-grid,
    .page-day-8__social-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0 20px;
    }

    .page-day-8__product-card,
    .page-day-8__promotion-card,
    .page-day-8__news-card,
    .page-day-8__payment-item,
    .page-day-8__provider-item,
    .page-day-8__social-item {
      background-color: #2c2c2c;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-day-8__product-card:hover,
    .page-day-8__promotion-card:hover,
    .page-day-8__news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
    }

    .page-day-8__card-image-container {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-day-8__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%;
      transition: transform 0.3s ease;
    }

    .page-day-8__product-card:hover .page-day-8__card-image,
    .page-day-8__promotion-card:hover .page-day-8__card-image,
    .page-day-8__news-card:hover .page-day-8__card-image {
      transform: scale(1.05);
    }

    .page-day-8__card-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-day-8__card-title {
      font-size: 1.3em;
      color: var(--day8-primary-color);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .page-day-8__card-description {
      font-size: 0.95em;
      color: var(--day8-gray-text);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-day-8__card-link {
      display: inline-block;
      color: var(--day8-accent-color);
      font-weight: bold;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-day-8__card-link:hover {
      color: var(--day8-primary-color);
    }

    .page-day-8__news-date {
      font-size: 0.85em;
      color: #999999;
      margin-top: 10px;
    }

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

    .page-day-8__floating-button {
      background-color: var(--day8-secondary-color);
      color: var(--day8-light-text);
      padding: 12px 25px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 120px;
    }

    .page-day-8__floating-button:hover {
      background-color: #006400;
      transform: translateY(-2px);
    }

    .page-day-8__floating-button--register {
      background-color: var(--day8-accent-color);
    }
    .page-day-8__floating-button--register:hover {
      background-color: #e63900;
    }

    .page-day-8__payment-item,
    .page-day-8__provider-item,
    .page-day-8__social-item {
      text-align: center;
      padding: 20px;
      border: 1px solid var(--day8-border-color);
      background-color: #2c2c2c;
      transition: background-color 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .page-day-8__payment-item:hover,
    .page-day-8__provider-item:hover,
    .page-day-8__social-item:hover {
      background-color: #3a3a3a;
    }

    .page-day-8__payment-logo,
    .page-day-8__provider-logo,
    .page-day-8__social-icon {
      max-width: 150px; /* Increased size for logos */
      height: auto;
      margin-bottom: 10px;
      max-height: 80px; /* Limit height to keep aspect ratio */
      object-fit: contain;
      max-width: 100%;
    }

    .page-day-8__payment-name,
    .page-day-8__provider-name,
    .page-day-8__social-name {
      font-weight: bold;
      color: var(--day8-light-text);
      font-size: 1.1em;
    }

    /* FAQ Section Styles */
    .page-day-8__faq-section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: #222222;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-day-8__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
      padding: 0 20px;
    }

    .page-day-8__faq-item {
      background-color: #2c2c2c;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      border: 1px solid var(--day8-border-color);
    }

    .page-day-8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #333333;
      color: var(--day8-primary-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-day-8__faq-question:hover {
      background-color: #444444;
    }

    .page-day-8__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: inherit;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-day-8__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from interfering with click */
    }

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

    .page-day-8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      color: var(--day8-gray-text);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

    .page-day-8__faq-item.active .page-day-8__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important; /* Expanded padding */
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-day-8 {
        padding: 0 10px;
      }

      .page-day-8__hero-section {
        padding: 40px 15px 30px;
      }

      .page-day-8__hero-title {
        font-size: 2em;
      }

      .page-day-8__hero-subtitle {
        font-size: 1em;
      }

      .page-day-8__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-day-8__section {
        padding: 30px 0;
      }

      .page-day-8__section-title {
        font-size: 1.7em;
        margin-bottom: 25px;
      }

      .page-day-8__product-grid,
      .page-day-8__promotion-grid,
      .page-day-8__news-grid,
      .page-day-8__payment-grid,
      .page-day-8__provider-grid,
      .page-day-8__social-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }

      .page-day-8__product-card,
      .page-day-8__promotion-card,
      .page-day-8__news-card,
      .page-day-8__payment-item,
      .page-day-8__provider-item,
      .page-day-8__social-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-day-8__card-title {
        font-size: 1.1em;
      }

      .page-day-8__card-description {
        font-size: 0.9em;
      }

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

      .page-day-8__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
        min-width: 100px;
      }

      .page-day-8__faq-question h3 {
        font-size: 1em;
      }
      .page-day-8__faq-question {
        padding: 15px 18px;
      }
      .page-day-8__faq-answer {
        padding: 0 18px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-day-8__faq-item.active .page-day-8__faq-answer {
        padding: 15px 18px !important;
      }
      .page-day-8__faq-list {
        padding: 0 15px;
      }
    }

    @media (max-width: 480px) {
      .page-day-8__hero-title {
        font-size: 1.8em;
      }
      .page-day-8__hero-subtitle {
        font-size: 0.9em;
      }
      .page-day-8__section-title {
        font-size: 1.5em;
      }
    }
  