
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #000000; /* Black */
      --accent-color: #FF4500; /* OrangeRed */
      --text-color-light: #FFFFFF;
      --text-color-dark: #333333;
      --background-light: #F8F8F8;
      --background-dark: #1A1A1A;
      --border-color: #555555;
      --button-hover-color: #FFC107;
    }

    .page-plus777-live-2 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color-dark);
      background-color: var(--background-light);
      padding-bottom: 80px; /* Space for fixed buttons */
    }

    .page-plus777-live-2__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-plus777-live-2__hero-section {
      background-color: var(--background-dark);
      color: var(--text-color-light);
      text-align: center;
      padding: 10px 20px 60px 20px; /* Small top padding, larger bottom */
      position: relative;
      overflow: hidden;
    }

    .page-plus777-live-2__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-plus777-live-2__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-plus777-live-2__h1 {
      font-size: 2.8em;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-plus777-live-2__hero-tagline {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--text-color-light);
    }

    .page-plus777-live-2__hero-cta-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--text-color-light);
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      transition: background-color 0.3s ease;
    }

    .page-plus777-live-2__hero-cta-button:hover {
      background-color: var(--button-hover-color);
    }

    .page-plus777-live-2__about-section {
      background-color: var(--background-light);
      text-align: center;
    }

    .page-plus777-live-2__h2 {
      font-size: 2em;
      color: var(--secondary-color);
      margin-bottom: 25px;
      text-align: center;
    }

    .page-plus777-live-2__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--text-color-dark);
    }

    .page-plus777-live-2__game-section {
      background-color: var(--background-dark);
      color: var(--text-color-light);
    }

    .page-plus777-live-2__game-h2 {
      color: var(--primary-color);
    }

    .page-plus777-live-2__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-plus777-live-2__game-card {
      background-color: #2a2a2a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-plus777-live-2__game-card:hover {
      transform: translateY(-5px);
    }

    .page-plus777-live-2__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-plus777-live-2__game-card-title {
      font-size: 1.3em;
      color: var(--primary-color);
      padding: 15px 10px;
      margin: 0;
    }

    .page-plus777-live-2__providers-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-plus777-live-2__provider-item {
      background-color: #3a3a3a;
      color: var(--text-color-light);
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      font-size: 0.95em;
      box-sizing: border-box;
      max-width: 100%;
      word-wrap: break-word;
    }

    .page-plus777-live-2__promotions-section {
      background-color: var(--background-light);
    }

    .page-plus777-live-2__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-plus777-live-2__promotion-card {
      background-color: var(--text-color-light);
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
      text-align: left;
    }

    .page-plus777-live-2__promotion-card:hover {
      transform: translateY(-8px);
    }

    .page-plus777-live-2__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-plus777-live-2__promotion-content {
      padding: 20px;
    }

    .page-plus777-live-2__promotion-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .page-plus777-live-2__promotion-description {
      font-size: 1em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-plus777-live-2__read-more-button {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      transition: background-color 0.3s ease;
    }

    .page-plus777-live-2__read-more-button:hover {
      background-color: var(--button-hover-color);
    }

    .page-plus777-live-2__payments-section {
      background-color: var(--background-dark);
      color: var(--text-color-light);
    }

    .page-plus777-live-2__payments-h2 {
      color: var(--primary-color);
    }

    .page-plus777-live-2__payments-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-plus777-live-2__payment-item {
      background-color: #2a2a2a;
      padding: 15px 25px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
      max-width: 100%;
      word-wrap: break-word;
    }

    .page-plus777-live-2__why-choose-section {
      background-color: var(--background-light);
    }

    .page-plus777-live-2__why-choose-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-plus777-live-2__why-choose-item {
      background-color: var(--text-color-light);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: left;
      border-left: 5px solid var(--primary-color);
      box-sizing: border-box;
      max-width: 100%;
      word-wrap: break-word;
    }

    .page-plus777-live-2__why-choose-title {
      font-size: 1.3em;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .page-plus777-live-2__why-choose-description {
      color: #555;
      font-size: 0.95em;
    }

    .page-plus777-live-2__faq-section {
      background-color: var(--background-dark);
      color: var(--text-color-light);
    }

    .page-plus777-live-2__faq-h2 {
      color: var(--primary-color);
    }

    .page-plus777-live-2__faq-container {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-plus777-live-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      user-select: none;
      font-size: 1.15em;
      font-weight: bold;
      color: var(--primary-color);
      border-bottom: 1px solid #3a3a3a;
      transition: background-color 0.3s ease;
    }

    .page-plus777-live-2__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-plus777-live-2__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-plus777-live-2__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-plus777-live-2__faq-item.active .page-plus777-live-2__faq-toggle {
      transform: rotate(45deg);
    }

    .page-plus777-live-2__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;
      color: var(--text-color-light);
      font-size: 1em;
      background-color: #222;
      border-radius: 0 0 8px 8px;
    }

    .page-plus777-live-2__faq-item.active .page-plus777-live-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-plus777-live-2__sticky-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      padding: 10px 0;
      display: flex;
      justify-content: space-around;
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-plus777-live-2__sticky-button {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 12px 25px;
      border-radius: 25px;
      font-weight: bold;
      text-transform: uppercase;
      font-size: 1em;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
      flex: 1;
      margin: 0 10px;
      max-width: 180px;
    }

    .page-plus777-live-2__sticky-button:hover {
      background-color: var(--button-hover-color);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-plus777-live-2__h1 {
        font-size: 2em;
      }

      .page-plus777-live-2__hero-tagline {
        font-size: 1em;
      }

      .page-plus777-live-2__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-plus777-live-2__h2 {
        font-size: 1.6em;
      }

      .page-plus777-live-2__text-content {
        font-size: 1em;
      }

      .page-plus777-live-2__game-grid,
      .page-plus777-live-2__promotion-grid,
      .page-plus777-live-2__why-choose-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-plus777-live-2__section {
        padding: 30px 15px;
      }

      .page-plus777-live-2__game-card-image,
      .page-plus777-live-2__promotion-image {
        height: 180px;
      }

      .page-plus777-live-2__providers-list,
      .page-plus777-live-2__payments-list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }

      .page-plus777-live-2__provider-item,
      .page-plus777-live-2__payment-item,
      .page-plus777-live-2__why-choose-item {
        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;
      }
      
      .page-plus777-live-2__payments-list,
      .page-plus777-live-2__providers-list,
      .page-plus777-live-2__why-choose-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-plus777-live-2__faq-question {
        font-size: 1em;
        padding: 15px;
      }

      .page-plus777-live-2__faq-answer {
        padding: 15px !important;
      }

      .page-plus777-live-2__sticky-button {
        padding: 10px 15px;
        font-size: 0.9em;
        margin: 0 5px;
      }
    }

    /* Ensure all images are responsive */
    .page-plus777-live-2 img {
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
      -webkit-user-drag: none; /* Prevent dragging on some browsers */
      user-select: none; /* Prevent selection */
    }

    .page-plus777-live-2__hero-section .page-plus777-live-2__hero-background {
      width: 100%;
      height: 100%;
      max-width: 100% !important;
      object-fit: cover;
      box-sizing: border-box !important;
    }
  