
    :root {
      --primary-color: #e44d26;
      --secondary-color: #f7931e;
      --text-color: #333;
      --background-color: #f4f4f4;
      --dark-background: #222;
      --light-text: #fff;
      --border-radius: 8px;
      --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .page-78bet-app {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-color);
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-78bet-app__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-78bet-app__hero-section {
      background-color: var(--dark-background);
      color: var(--light-text);
      text-align: center;
      padding: 10px 20px 60px 20px;
      position: relative;
      overflow: hidden;
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      margin-bottom: 30px;
    }

    .page-78bet-app__hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3));
        z-index: 1;
    }

    .page-78bet-app__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-78bet-app__hero-section h1 {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--secondary-color);
    }

    .page-78bet-app__hero-section p {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-78bet-app__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .page-78bet-app__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-78bet-app__button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-78bet-app__title {
      font-size: 2.2em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-78bet-app__title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 80px;
      height: 4px;
      background-color: var(--secondary-color);
      border-radius: 2px;
    }

    .page-78bet-app__text-content p {
      margin-bottom: 20px;
      font-size: 1.1em;
      color: #555;
    }

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

    .page-78bet-app__feature-item {
      background-color: var(--light-text);
      padding: 25px;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-78bet-app__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-78bet-app__feature-item img {
      max-width: 100%;
      height: auto;
      margin-bottom: 15px;
      border-radius: 4px;
    }

    .page-78bet-app__feature-item h3 {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-78bet-app__feature-item p {
      color: #666;
      font-size: 1em;
    }

    .page-78bet-app__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-78bet-app__game-card {
      background-color: var(--light-text);
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-78bet-app__game-card:hover {
      transform: translateY(-5px);
    }

    .page-78bet-app__game-card img {
      max-width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .page-78bet-app__game-card h3 {
      font-size: 1.3em;
      color: var(--text-color);
      padding: 15px;
      margin: 0;
    }

    .page-78bet-app__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-78bet-app__step-item {
      background-color: var(--light-text);
      padding: 20px 25px;
      margin-bottom: 15px;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      display: flex;
      align-items: center;
    }

    .page-78bet-app__step-item span {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-78bet-app__step-item p {
      margin: 0;
      font-size: 1.1em;
      color: #444;
    }

    .page-78bet-app__image-container {
      text-align: center;
      margin-top: 30px;
    }

    .page-78bet-app__image-container img {
      max-width: 100%;
      height: auto;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
    }

    .page-78bet-app__payment-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-78bet-app__payment-provider-item {
      background-color: var(--light-text);
      padding: 15px;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 80px;
    }

    .page-78bet-app__payment-provider-item img {
      max-width: 100%;
      max-height: 60px;
      height: auto;
      object-fit: contain;
    }

    .page-78bet-app__faq-section {
      background-color: var(--light-text);
      padding: 40px 20px;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      margin-top: 40px;
    }

    .page-78bet-app__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-78bet-app__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-78bet-app__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-78bet-app__faq-question:hover {
      background-color: #f9f9f9;
    }

    .page-78bet-app__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--text-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-78bet-app__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-78bet-app__faq-item.active .page-78bet-app__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-78bet-app__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-78bet-app__faq-answer p {
      margin: 0;
      font-size: 1em;
      color: #555;
    }

    .page-78bet-app__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      background-color: var(--dark-background);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      padding: 10px 0;
    }

    .page-78bet-app__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 10px;
      margin: 0 5px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-78bet-app__register-button {
      background-color: var(--primary-color);
      color: var(--light-text);
    }

    .page-78bet-app__register-button:hover {
      background-color: #c0392b;
    }

    .page-78bet-app__login-button {
      background-color: var(--secondary-color);
      color: var(--dark-background);
    }

    .page-78bet-app__login-button:hover {
      background-color: #e67e22;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-78bet-app__hero-section h1 {
        font-size: 2em;
      }
      .page-78bet-app__hero-section p {
        font-size: 1em;
      }
      .page-78bet-app__title {
        font-size: 1.8em;
      }
      .page-78bet-app__section {
        padding: 30px 15px;
      }
      .page-78bet-app__features-grid,
      .page-78bet-app__game-grid,
      .page-78bet-app__payment-providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-78bet-app__game-card img {
        height: 180px;
      }
      .page-78bet-app__step-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
      }
      .page-78bet-app__step-item span {
        margin-right: 0;
        margin-bottom: 10px;
      }
      .page-78bet-app__text-content p {
        font-size: 0.95em;
      }
      .page-78bet-app__faq-question h3 {
        font-size: 1.1em;
      }
      .page-78bet-app__faq-answer p {
        font-size: 0.95em;
      }
      .page-78bet-app__floating-button {
        font-size: 1em;
        padding: 10px 5px;
      }

      /* List item mobile responsiveness */
      .page-78bet-app__features-grid > .page-78bet-app__feature-item,
      .page-78bet-app__game-grid > .page-78bet-app__game-card,
      .page-78bet-app__steps-list > .page-78bet-app__step-item,
      .page-78bet-app__payment-providers-grid > .page-78bet-app__payment-provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
      }
      .page-78bet-app__features-grid,
      .page-78bet-app__game-grid,
      .page-78bet-app__steps-list,
      .page-78bet-app__payment-providers-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-78bet-app__step-item p,
      .page-78bet-app__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-78bet-app__image-container img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-78bet-app__hero-section h1 {
        font-size: 1.8em;
      }
      .page-78bet-app__hero-section p {
        font-size: 0.9em;
      }
      .page-78bet-app__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-78bet-app__title {
        font-size: 1.6em;
      }
    }
  