
    :root {
      --day8-primary-color: #e44d26; /* A vibrant, energetic color */
      --day8-secondary-color: #f7931e; /* A complementary warm color */
      --day8-text-dark: #333;
      --day8-text-light: #fff;
      --day8-bg-dark: #1a1a1a;
      --day8-bg-light: #f5f5f5;
      --day8-accent-color: #007bff; /* For links/buttons */
    }

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

    .page-day8-com__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--day8-text-light);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-day8-com__section--dark {
      background-color: var(--day8-bg-dark);
      color: var(--day8-text-light);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-day8-com__section-title {
      text-align: center;
      color: var(--day8-primary-color);
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: 700;
    }

    .page-day8-com__section-title--light {
      color: var(--day8-secondary-color);
    }

    .page-day8-com__hero-section {
      background: linear-gradient(135deg, var(--day8-primary-color), var(--day8-secondary-color));
      color: var(--day8-text-light);
      text-align: center;
      padding: 60px 20px;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
      padding-top: 60px; /* Small top padding for visual separation from header */
    }

    .page-day8-com__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--day8-text-light);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-day8-com__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.9);
    }

    .page-day8-com__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-top: 30px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .page-day8-com__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-day8-com__product-card {
      background-color: var(--day8-bg-light);
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-day8-com__product-card--dark {
      background-color: #2a2a2a;
      color: var(--day8-text-light);
    }

    .page-day8-com__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .page-day8-com__product-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #eee;
    }

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

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

    .page-day8-com__product-title {
      font-size: 1.5em;
      color: var(--day8-primary-color);
      margin-bottom: 10px;
    }

    .page-day8-com__product-title--light {
      color: var(--day8-secondary-color);
    }

    .page-day8-com__product-description {
      font-size: 0.95em;
      color: var(--day8-text-dark);
      margin-bottom: 15px;
    }

    .page-day8-com__product-description--light {
      color: rgba(255, 255, 255, 0.8);
    }

    .page-day8-com__promo-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .page-day8-com__promo-card {
      background-color: var(--day8-bg-dark);
      color: var(--day8-text-light);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      padding: 30px;
      text-align: center;
    }

    .page-day8-com__promo-title {
      font-size: 2em;
      color: var(--day8-secondary-color);
      margin-bottom: 15px;
    }

    .page-day8-com__promo-description {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-day8-com__promo-image {
      width: 100%;
      max-width: 800px;
      height: auto;
      margin: 20px auto;
      display: block;
      border-radius: 8px;
    }

    .page-day8-com__features-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-day8-com__feature-item {
      background-color: var(--day8-bg-light);
      padding: 25px;
      border-left: 5px solid var(--day8-primary-color);
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-day8-com__feature-item--dark {
      background-color: #2a2a2a;
      color: var(--day8-text-light);
      border-left-color: var(--day8-secondary-color);
    }

    .page-day8-com__feature-item:hover {
      transform: translateY(-3px);
    }

    .page-day8-com__feature-title {
      font-size: 1.3em;
      color: var(--day8-primary-color);
      margin-bottom: 10px;
    }

    .page-day8-com__feature-title--light {
      color: var(--day8-secondary-color);
    }

    .page-day8-com__payment-providers,
    .page-day8-com__game-providers {
      margin-top: 30px;
    }

    .page-day8-com__provider-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      list-style: none;
      padding: 0;
    }

    .page-day8-com__provider-item {
      background-color: var(--day8-bg-light);
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      color: var(--day8-primary-color);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-day8-com__provider-item--dark {
      background-color: #2a2a2a;
      color: var(--day8-secondary-color);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .page-day8-com__news-item {
      background-color: var(--day8-bg-light);
      padding: 20px;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .page-day8-com__news-item--dark {
      background-color: #2a2a2a;
      color: var(--day8-text-light);
    }

    .page-day8-com__news-title {
      font-size: 1.3em;
      color: var(--day8-primary-color);
      margin-bottom: 5px;
    }

    .page-day8-com__news-title--light {
      color: var(--day8-secondary-color);
    }

    .page-day8-com__news-date {
      font-size: 0.85em;
      color: #777;
      margin-bottom: 10px;
      display: block;
    }

    .page-day8-com__news-date--light {
      color: rgba(255, 255, 255, 0.6);
    }

    /* Floating Buttons */
    .page-day8-com__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-day8-com__floating-button {
      background-color: var(--day8-primary-color);
      color: var(--day8-text-light);
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      text-align: center;
      display: block;
    }

    .page-day8-com__floating-button:hover {
      background-color: #c73c1d;
      transform: translateY(-2px);
    }

    .page-day8-com__floating-button--secondary {
      background-color: var(--day8-secondary-color);
    }

    .page-day8-com__floating-button--secondary:hover {
      background-color: #e08012;
    }

    /* FAQ Section */
    .page-day8-com__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 40px auto;
      background-color: var(--day8-text-light);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .page-day8-com__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
    }

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

    .page-day8-com__faq-question:hover {
      background-color: #e9e9e9;
    }

    .page-day8-com__faq-question h3 {
      margin: 0;
      color: var(--day8-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-day8-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: var(--day8-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-day8-com__faq-item.active .page-day8-com__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus effect */
    }

    .page-day8-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: var(--day8-text-light);
      color: var(--day8-text-dark);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-day8-com {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
      }
      .page-day8-com__section {
        padding: 20px 15px;
        margin-bottom: 15px;
      }

      .page-day8-com__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-day8-com__hero-section {
        padding: 40px 15px;
        padding-top: 40px; /* Small top padding for visual separation from header */
      }

      .page-day8-com__hero-title {
        font-size: 2.5em;
      }

      .page-day8-com__hero-subtitle {
        font-size: 1.2em;
      }

      .page-day8-com__product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-day8-com__promo-title {
        font-size: 1.5em;
      }

      .page-day8-com__features-list {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-day8-com__feature-item,
      .page-day8-com__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !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-day8-com__provider-list {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        justify-content: flex-start; /* Align providers to left */
      }

      .page-day8-com__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
      }

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

      .page-day8-com__faq-section {
        padding: 20px 15px;
        margin: 20px auto;
      }

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

      .page-day8-com__faq-answer {
        padding: 15px 15px !important;
      }

      .page-day8-com__hero-image,
      .page-day8-com__product-image,
      .page-day8-com__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      
      .page-day8-com__product-image-wrapper {
        height: 180px; /* Slightly smaller on mobile */
      }
    }

    @media (max-width: 480px) {
      .page-day8-com__hero-title {
        font-size: 2em;
      }
      .page-day8-com__hero-subtitle {
        font-size: 1em;
      }
      .page-day8-com__section-title {
        font-size: 1.8em;
      }
      .page-day8-com__floating-buttons {
        flex-direction: row; /* Buttons side-by-side on very small screens */
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        justify-content: space-around;
      }
      .page-day8-com__floating-button {
        flex: 1;
        margin: 0 5px;
      }
    }
  