
    :root {
      --primary-color: #f7b32b; /* Gold/Yellow */
      --secondary-color: #2c3e50; /* Dark Blue/Grey */
      --accent-color: #e74c3c; /* Red */
      --text-color: #ecf0f1; /* Light Grey */
      --bg-dark: #1a1a2e; /* Very Dark Blue */
      --bg-light: #2a2a4a; /* Slightly lighter dark blue */
      --border-color: #34495e;
    }

    /* Base styles for the page-78sun scope */
    .page-78sun {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--bg-dark);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Small padding to ensure content is not directly at the very top */
    }

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

    .page-78sun__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-78sun__section--dark {
      background-color: var(--bg-light);
    }

    .page-78sun__heading-primary {
      font-size: 2.8em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-78sun__heading-secondary {
      font-size: 2.2em;
      color: var(--primary-color);
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-78sun__heading-secondary::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--primary-color);
    }

    .page-78sun__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: var(--text-color);
    }

    /* Hero Section */
    .page-78sun__hero-section {
      background-image: url('[GALLERY:hero:1920x1080:betting,casino,sports]');
      background-size: cover;
      background-position: center;
      color: #fff;
      padding: 100px 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 450px;
      position: relative;
      overflow: hidden;
    }

    .page-78sun__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
    }

    .page-78sun__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .page-78sun__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: var(--primary-color);
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }

    .page-78sun__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      line-height: 1.5;
      color: var(--text-color);
    }

    .page-78sun__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--bg-dark);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-78sun__button:hover {
      background-color: #ffd700; /* Lighter gold */
      transform: translateY(-2px);
    }

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

    .page-78sun__floating-button {
      background-color: var(--primary-color);
      color: var(--bg-dark);
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: bold;
      text-transform: uppercase;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-78sun__floating-button:hover {
      background-color: #ffd700;
      transform: scale(1.05);
    }

    /* Product Grid */
    .page-78sun__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-78sun__product-card {
      background-color: var(--bg-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-78sun__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-78sun__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-78sun__product-content {
      padding: 20px;
    }

    .page-78sun__product-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
      text-align: center;
    }

    .page-78sun__product-description {
      font-size: 0.95em;
      color: var(--text-color);
      margin-bottom: 15px;
      text-align: center;
    }

    /* Promotions Section */
    .page-78sun__promo-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 30px;
    }

    .page-78sun__promo-card {
      background-color: var(--bg-light);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
      border-left: 5px solid var(--primary-color);
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .page-78sun__promo-card-image {
      width: 150px;
      height: 100px;
      object-fit: cover;
      border-radius: 5px;
      flex-shrink: 0;
    }

    .page-78sun__promo-card-content {
      flex-grow: 1;
    }

    .page-78sun__promo-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 8px;
    }

    .page-78sun__promo-description {
      font-size: 0.95em;
      color: var(--text-color);
    }

    /* News Section */
    .page-78sun__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-78sun__news-card {
      background-color: var(--bg-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-78sun__news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-78sun__news-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-78sun__news-content {
      padding: 20px;
    }

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

    .page-78sun__news-date {
      font-size: 0.85em;
      color: #95a5a6;
      margin-bottom: 10px;
    }

    .page-78sun__news-excerpt {
      font-size: 0.9em;
      color: var(--text-color);
    }

    /* FAQ Section */
    .page-78sun__faq-list {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-78sun__faq-item {
      background-color: var(--bg-light);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
    }

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

    .page-78sun__faq-question:hover {
      background-color: #3e526a;
    }

    .page-78sun__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

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

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

    .page-78sun__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: var(--bg-dark);
      color: var(--text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

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

    .page-78sun__faq-answer p {
      margin: 0;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-78sun__hero-title {
        font-size: 2.2em;
      }

      .page-78sun__hero-description {
        font-size: 1em;
      }

      .page-78sun__heading-primary {
        font-size: 2em;
      }

      .page-78sun__heading-secondary {
        font-size: 1.8em;
      }

      .page-78sun__floating-buttons {
        flex-direction: row;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        justify-content: space-around;
        padding: 10px;
        background-color: rgba(26, 26, 46, 0.9);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        border-radius: 0;
        gap: 0;
      }

      .page-78sun__floating-button {
        flex: 1;
        margin: 0 5px;
        padding: 10px 10px;
        font-size: 0.9em;
        border-radius: 5px;
        box-shadow: none;
      }

      .page-78sun__product-grid, .page-78sun__news-grid {
        grid-template-columns: 1fr;
      }

      .page-78sun__promo-card {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 5px solid var(--primary-color);
      }

      .page-78sun__promo-card-image {
        width: 100%;
        height: 150px;
        margin-bottom: 15px;
      }

      /* List items responsive */
      .page-78sun__product-card, .page-78sun__news-card, .page-78sun__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
      }

      .page-78sun__product-content, .page-78sun__news-content, .page-78sun__promo-card-content {
        padding: 15px;
      }

      .page-78sun__product-description, .page-78sun__news-excerpt, .page-78sun__promo-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-78sun__faq-question h3 {
        font-size: 1em;
      }

      .page-78sun__faq-answer {
        padding: 0 15px;
      }

      .page-78sun__faq-item.active .page-78sun__faq-answer {
        padding: 15px !important;
      }

      /* Image responsive */
      .page-78sun img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-78sun__product-image, .page-78sun__news-image, .page-78sun__promo-card-image {
        width: 100% !important;
        height: auto !important;
        max-height: 250px !important; /* Cap height for larger images on mobile */
        object-fit: cover !important;
      }
    }
  