
      :root {
          --primary-color: #2F6BFF;
          --secondary-color: #6FA3FF;
          --glow-color: #A5C4FF;
          --border-color: #D6E2FF;
          --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
          --card-bg-color: #FFFFFF;
          --text-main-color: #1F2D3D;
          --background-color: #F4F7FB;
          --f8bet-black: #000000;
          --f8bet-white: #FFFFFF;
          --f8bet-yellow: #FFD700;
      }

      .page-f8bet {
          font-family: 'Arial', sans-serif;
          background-color: var(--f8bet-black);
          color: var(--f8bet-white);
          line-height: 1.6;
          padding-bottom: 80px; /* Space for floating button */
      }

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

      .page-f8bet__section {
          padding: 40px 0;
      }

      .page-f8bet__hero-section {
          padding-top: 10px;
          padding-bottom: 20px;
          text-align: center;
          position: relative;
          overflow: hidden;
      }

      .page-f8bet__hero-image {
          width: 100%;
          height: auto;
          display: block;
          object-fit: cover;
          border-radius: 10px;
          margin-bottom: 20px;
      }

      .page-f8bet__hero-content {
          max-width: 800px;
          margin: 0 auto;
          padding: 0 15px;
      }

      .page-f8bet__main-title {
          font-size: clamp(2em, 5vw, 2.5em);
          color: var(--f8bet-yellow);
          margin-bottom: 15px;
          line-height: 1.2;
          font-weight: bold;
      }

      .page-f8bet__description {
          font-size: 1.1em;
          color: var(--f8bet-white);
          margin-bottom: 30px;
      }

      .page-f8bet__cta-buttons {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 15px;
          margin-bottom: 30px;
      }

      .page-f8bet__btn-primary,
      .page-f8bet__btn-secondary {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          padding: 12px 25px;
          border-radius: 8px;
          text-decoration: none;
          font-weight: bold;
          font-size: 1.05em;
          transition: all 0.3s ease;
          cursor: pointer;
          box-sizing: border-box;
          white-space: normal;
          word-wrap: break-word;
      }

      .page-f8bet__btn-primary {
          background: var(--button-gradient);
          color: var(--f8bet-white);
          border: none;
      }

      .page-f8bet__btn-primary:hover {
          opacity: 0.9;
          transform: translateY(-2px);
      }

      .page-f8bet__btn-secondary {
          background: var(--f8bet-black);
          color: var(--f8bet-yellow);
          border: 2px solid var(--f8bet-yellow);
      }

      .page-f8bet__btn-secondary:hover {
          background: var(--f8bet-yellow);
          color: var(--f8bet-black);
      }

      .page-f8bet__section-title {
          font-size: 2em;
          color: var(--f8bet-yellow);
          text-align: center;
          margin-bottom: 30px;
          position: relative;
          padding-bottom: 10px;
      }

      .page-f8bet__section-title::after {
          content: '';
          position: absolute;
          left: 50%;
          bottom: 0;
          transform: translateX(-50%);
          width: 60px;
          height: 3px;
          background-color: var(--primary-color);
          border-radius: 2px;
      }

      .page-f8bet__games-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 25px;
          padding: 0 15px;
      }

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

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

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

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

      .page-f8bet__game-title {
          font-size: 1.4em;
          color: var(--f8bet-yellow);
          margin-bottom: 10px;
      }

      .page-f8bet__game-description {
          font-size: 0.95em;
          color: var(--f8bet-white);
          margin-bottom: 15px;
      }

      .page-f8bet__game-link {
          display: inline-block;
          padding: 8px 15px;
          background: var(--button-gradient);
          color: var(--f8bet-white);
          border-radius: 5px;
          text-decoration: none;
          font-weight: bold;
          font-size: 0.9em;
          transition: background 0.3s ease;
      }

      .page-f8bet__game-link:hover {
          background: var(--primary-color);
      }

      .page-f8bet__providers-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
          gap: 20px;
          justify-items: center;
          align-items: center;
          padding: 0 15px;
      }

      .page-f8bet__provider-logo {
          max-width: 100px;
          height: auto;
          object-fit: contain;
          filter: grayscale(100%);
          opacity: 0.7;
          transition: filter 0.3s ease, opacity 0.3s ease;
      }

      .page-f8bet__provider-logo:hover {
          filter: grayscale(0%);
          opacity: 1;
      }

      .page-f8bet__about-content {
          max-width: 800px;
          margin: 0 auto;
          padding: 0 15px;
          color: var(--f8bet-white);
      }

      .page-f8bet__about-content h3 {
          color: var(--f8bet-yellow);
          font-size: 1.6em;
          margin-top: 25px;
          margin-bottom: 10px;
      }

      .page-f8bet__about-content p {
          margin-bottom: 15px;
          line-height: 1.7;
      }

      .page-f8bet__faq-list {
          max-width: 800px;
          margin: 0 auto;
          padding: 0 15px;
      }

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

      .page-f8bet__faq-question {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 15px 20px;
          background-color: #2a2a2a;
          cursor: pointer;
          user-select: none;
          font-size: 1.1em;
          font-weight: bold;
          color: var(--f8bet-white);
          transition: background-color 0.3s ease;
      }

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

      .page-f8bet__faq-question h3 {
          margin: 0;
          color: inherit;
          pointer-events: none;
      }

      .page-f8bet__faq-toggle {
          font-size: 1.5em;
          line-height: 1;
          pointer-events: none;
          color: var(--f8bet-yellow);
          transition: transform 0.3s ease;
      }

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

      .page-f8bet__faq-answer {
          max-height: 0;
          overflow: hidden;
          padding: 0 20px;
          opacity: 0;
          color: var(--f8bet-white);
          transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      }

      .page-f8bet__faq-item.active .page-f8bet__faq-answer {
          max-height: 2000px !important;
          padding: 15px 20px 20px !important;
          opacity: 1;
      }

      .page-f8bet__floating-button-container {
          position: fixed;
          bottom: 20px;
          right: 20px;
          z-index: 1000;
          width: auto;
          max-width: 90%;
          box-sizing: border-box;
          overflow: hidden;
          display: flex;
          justify-content: flex-end;
      }

      .page-f8bet__floating-button {
          background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
          color: var(--f8bet-black);
          padding: 12px 20px;
          border-radius: 50px;
          text-decoration: none;
          font-weight: bold;
          font-size: 1.1em;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
          transition: all 0.3s ease;
          display: flex;
          align-items: center;
          gap: 8px;
          max-width: 100%;
          box-sizing: border-box;
          white-space: normal;
          word-wrap: break-word;
      }

      .page-f8bet__floating-button:hover {
          transform: translateY(-3px) scale(1.02);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
      }

      .page-f8bet__social-media {
          text-align: center;
          padding: 40px 0;
          background-color: #1a1a1a;
      }

      .page-f8bet__social-icons {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 20px;
          padding: 0 15px;
      }

      .page-f8bet__social-link {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 50px;
          height: 50px;
          border-radius: 50%;
          background-color: #333;
          color: var(--f8bet-white);
          font-size: 1.5em;
          text-decoration: none;
          transition: background-color 0.3s ease, transform 0.3s ease;
      }

      .page-f8bet__social-link:hover {
          background-color: var(--primary-color);
          transform: translateY(-3px);
      }

      /* Responsive Styles */
      @media (max-width: 1024px) {
          .page-f8bet__main-title {
              font-size: clamp(1.8em, 4.5vw, 2.2em);
          }

          .page-f8bet__section-title {
              font-size: 1.8em;
          }

          .page-f8bet__games-grid {
              grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          }
      }

      @media (max-width: 768px) {
          .page-f8bet {
              font-size: 15px;
          }

          .page-f8bet__hero-section {
              padding-top: 10px !important;
          }

          .page-f8bet__hero-image {
              height: 180px;
          }

          .page-f8bet__main-title {
              font-size: clamp(1.5em, 7vw, 2em);
          }

          .page-f8bet__description {
              font-size: 1em;
          }

          .page-f8bet__cta-buttons {
              flex-direction: column;
              gap: 10px;
              padding: 0 15px;
          }

          .page-f8bet__btn-primary,
          .page-f8bet__btn-secondary {
              max-width: 100% !important;
              width: 100% !important;
              padding: 10px 15px;
              font-size: 1em;
          }

          .page-f8bet__section-title {
              font-size: 1.6em;
              margin-bottom: 20px;
          }

          .page-f8bet__games-grid {
              grid-template-columns: 1fr;
              padding: 0 15px;
          }

          .page-f8bet__game-card {
              margin-bottom: 20px;
          }

          .page-f8bet__game-image {
              height: 160px;
          }

          .page-f8bet__game-title {
              font-size: 1.2em;
          }

          .page-f8bet__providers-grid {
              grid-template-columns: repeat(3, 1fr);
              padding: 0 15px;
          }

          .page-f8bet__provider-logo {
              max-width: 80px;
          }

          .page-f8bet__about-content,
          .page-f8bet__faq-list {
              padding: 0 15px;
          }

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

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

          .page-f8bet__faq-item.active .page-f8bet__faq-answer {
              padding: 10px 15px 15px !important;
          }

          .page-f8bet__floating-button-container {
              bottom: 15px;
              right: 15px;
              max-width: calc(100% - 30px);
              justify-content: center;
          }

          .page-f8bet__floating-button {
              font-size: 1em;
              padding: 10px 15px;
              width: 100% !important;
          }

          .page-f8bet__social-icons {
              gap: 15px;
              padding: 0 15px;
          }

          .page-f8bet__social-link {
              width: 45px;
              height: 45px;
              font-size: 1.3em;
          }

          /* Universal image and container responsive styles */
          .page-f8bet img {
              max-width: 100% !important;
              width: 100% !important;
              height: auto !important;
              display: block;
          }
          .page-f8bet__section,
          .page-f8bet__container,
          .page-f8bet__game-card,
          .page-f8bet__faq-item,
          .page-f8bet__about-content,
          .page-f8bet__social-media {
              max-width: 100% !important;
              width: 100% !important;
              box-sizing: border-box !important;
              padding-left: 15px;
              padding-right: 15px;
          }
          .page-f8bet__games-grid,
          .page-f8bet__providers-grid,
          .page-f8bet__social-icons {
              padding-left: 0;
              padding-right: 0;
          }
          .page-f8bet ul,
          .page-f8bet ol {
              padding-left: 0 !important;
              padding-right: 0 !important;
              margin-left: 0 !important;
              margin-right: 0 !important;
              width: 100% !important;
              max-width: 100% !important;
              box-sizing: border-box !important;
          }
          .page-f8bet li {
              width: 100% !important;
              max-width: 100% !important;
              box-sizing: border-box !important;
              margin-left: 0 !important;
              margin-right: 0 !important;
              word-wrap: break-word !important;
              overflow-wrap: break-word !important;
              word-break: break-word !important;
          }
      }
    