
    .page-8jun {
      background-color: #000000;
      color: #ffffff;
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for footer */
      position: relative;
    }

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

    /* Fixed Header Spacing */
    .page-8jun__hero-section {
      padding-top: 120px; /* Desktop spacing for fixed header */
      text-align: center;
      position: relative;
    }

    @media (max-width: 768px) {
      .page-8jun__hero-section {
        padding-top: 100px; /* Mobile spacing for fixed header */
      }
    }

    .page-8jun__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
      object-fit: cover;
    }

    .page-8jun__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.7);
      border-radius: 10px;
      box-sizing: border-box;
    }

    .page-8jun__hero-title {
      color: #FFD700; /* Gold */
      font-size: 3em;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
      text-transform: uppercase;
    }

    .page-8jun__hero-subtitle {
      color: #ffffff;
      font-size: 1.5em;
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-8jun__promo-button {
      display: inline-block;
      background-color: #FFD700; /* Gold */
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

    .page-8jun__promo-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    .page-8jun__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FF4500; /* OrangeRed */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: page-8jun__pulse 1.5s infinite;
    }

    .page-8jun__floating-button:hover {
      background-color: #e03c00;
      transform: scale(1.05);
    }

    @keyframes page-8jun__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .page-8jun__section-title {
      color: #FFD700;
      font-size: 2.5em;
      text-align: center;
      margin: 40px 0 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-8jun__section-description {
      text-align: center;
      margin-bottom: 30px;
      color: #cccccc;
      font-size: 1.1em;
    }

    .page-8jun__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-bottom: 40px;
    }

    .page-8jun__card {
      background-color: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-8jun__card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(255, 215, 0, 0.3);
    }

    .page-8jun__card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8jun__card-image {
      width: 100%;
      max-width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 2px solid #FFD700;
      transition: transform 0.3s ease;
    }

    .page-8jun__card:hover .page-8jun__card-image {
      transform: scale(1.05);
    }

    .page-8jun__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-8jun__card-title {
      color: #FFD700;
      font-size: 1.5em;
      margin-bottom: 15px;
      text-decoration: none;
      display: block;
    }
    
    .page-8jun__card-title a {
      color: #FFD700;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-8jun__card-title a:hover {
      color: #ffffff;
    }

    .page-8jun__card-text {
      color: #cccccc;
      font-size: 0.95em;
      margin-bottom: 20px;
    }

    .page-8jun__card-link {
      display: inline-block;
      background-color: #333333;
      color: #FFD700;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease, color 0.3s ease;
      border: 1px solid #FFD700;
    }

    .page-8jun__card-link:hover {
      background-color: #FFD700;
      color: #000000;
    }

    /* Game Providers Section */
    .page-8jun__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }

    .page-8jun__provider-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-8jun__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(255, 215, 0, 0.2);
    }

    .page-8jun__provider-logo {
      width: 100%;
      max-width: 120px; /* Max width for logos */
      height: auto;
      object-fit: contain;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
    }

    .page-8jun__provider-item:hover .page-8jun__provider-logo {
      filter: grayscale(0%);
    }

    /* FAQ Section */
    .page-8jun__faq-section {
      margin-top: 60px;
    }

    .page-8jun__faq-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-8jun__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      border-bottom: 1px solid #3a3a3a;
      transition: background-color 0.3s ease;
    }

    .page-8jun__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-8jun__faq-question h3 {
      color: #FFD700;
      font-size: 1.25em;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8jun__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #FFD700;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

    .page-8jun__faq-item.active .page-8jun__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-8jun__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

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

      .page-8jun__hero-title {
        font-size: 2.2em;
      }

      .page-8jun__hero-subtitle {
        font-size: 1.2em;
      }

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

      .page-8jun__section-title {
        font-size: 2em;
        margin: 30px 0 20px;
      }

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

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

      .page-8jun__card-title {
        font-size: 1.3em;
      }

      .page-8jun__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.95em;
      }

      .page-8jun__faq-question {
        padding: 15px 20px;
      }

      .page-8jun__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8jun__faq-answer {
        padding: 0 20px;
      }

      .page-8jun__faq-item.active .page-8jun__faq-answer {
        padding: 15px 20px !important;
      }
      
      /* Important for all images on mobile */
      img {
        max-width: 100% !important;
        height: auto !important;
      }
    }
  