
      :root {
        --page-gem1-primary-color: #26A9E0;
        --page-gem1-secondary-color: #FFFFFF;
        --page-gem1-login-button-color: #EA7C07;
        --page-gem1-text-dark: #333333;
        --page-gem1-text-light: #ffffff;
        --page-gem1-background-light: #f5f5f5;
        --page-gem1-border-light: #e0e0e0;
      }

      .page-gem1 {
        font-family: 'Arial', sans-serif;
        color: var(--page-gem1-text-dark);
        background-color: var(--page-gem1-background-light);
        line-height: 1.6;
      }

      .page-gem1 img {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
      }
      
      .page-gem1 video {
        max-width: 100%;
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
      }

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

      .page-gem1__hero-section {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 10px 0 60px 0;
        background-color: var(--page-gem1-primary-color);
        color: var(--page-gem1-text-light);
        overflow: hidden;
      }

      .page-gem1__hero-image-wrapper {
        width: 100%;
        max-height: 500px;
        overflow: hidden;
        margin-bottom: 30px;
      }
      
      .page-gem1__hero-image {
        width: 100%;
        height: auto;
        object-fit: cover;
      }

      .page-gem1__hero-content {
        z-index: 1;
        max-width: 800px;
        padding: 0 20px;
      }

      .page-gem1__hero-content h1 {
        font-weight: bold;
        line-height: 1.2;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
        color: var(--page-gem1-text-light);
      }

      .page-gem1__hero-content p {
        font-size: 1.1em;
        margin-bottom: 30px;
        color: var(--page-gem1-text-light);
      }

      .page-gem1__cta-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
      }

      .page-gem1__cta-button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        white-space: normal;
        word-wrap: break-word;
        box-sizing: border-box;
        max-width: 100%;
      }

      .page-gem1__cta-button--primary {
        background-color: var(--page-gem1-login-button-color);
        color: var(--page-gem1-text-light);
        border: 2px solid var(--page-gem1-login-button-color);
      }

      .page-gem1__cta-button--primary:hover {
        background-color: darken(var(--page-gem1-login-button-color), 10%);
        transform: translateY(-2px);
      }

      .page-gem1__cta-button--secondary {
        background-color: transparent;
        color: var(--page-gem1-text-light);
        border: 2px solid var(--page-gem1-text-light);
      }

      .page-gem1__cta-button--secondary:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
      }

      .page-gem1__section {
        padding: 60px 0;
        text-align: center;
      }

      .page-gem1__section h2 {
        font-size: 2.2em;
        color: var(--page-gem1-primary-color);
        margin-bottom: 40px;
        font-weight: bold;
      }

      .page-gem1__section p {
        max-width: 900px;
        margin: 0 auto 30px auto;
        font-size: 1.1em;
      }

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

      .page-gem1__game-card {
        background-color: var(--page-gem1-secondary-color);
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: left;
        transition: transform 0.3s ease;
        color: var(--page-gem1-text-dark);
      }

      .page-gem1__game-card:hover {
        transform: translateY(-5px);
      }

      .page-gem1__game-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
      }

      .page-gem1__game-card-content {
        padding: 25px;
      }

      .page-gem1__game-card-content h3 {
        font-size: 1.5em;
        margin-bottom: 10px;
        color: var(--page-gem1-primary-color);
      }

      .page-gem1__game-card-content p {
        font-size: 0.95em;
        line-height: 1.5;
        margin-bottom: 20px;
        text-align: left;
      }

      .page-gem1__game-card-button {
        display: inline-block;
        padding: 10px 20px;
        background-color: var(--page-gem1-primary-color);
        color: var(--page-gem1-text-light);
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
      }

      .page-gem1__game-card-button:hover {
        background-color: darken(var(--page-gem1-primary-color), 10%);
      }

      .page-gem1__why-choose-list {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        text-align: left;
        margin-top: 40px;
      }

      .page-gem1__why-choose-item {
        background-color: var(--page-gem1-secondary-color);
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: flex-start;
        gap: 20px;
      }

      .page-gem1__why-choose-item-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        background-color: var(--page-gem1-primary-color);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.8em;
        color: var(--page-gem1-text-light);
      }

      .page-gem1__why-choose-item-content h3 {
        font-size: 1.3em;
        color: var(--page-gem1-primary-color);
        margin-bottom: 10px;
      }

      .page-gem1__why-choose-item-content p {
        font-size: 0.95em;
        line-height: 1.5;
        margin-bottom: 0;
      }

      .page-gem1__promo-banner {
        background-color: var(--page-gem1-primary-color);
        color: var(--page-gem1-text-light);
        padding: 80px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .page-gem1__promo-banner-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.2;
        z-index: 0;
      }

      .page-gem1__promo-banner-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
      }

      .page-gem1__promo-banner-content h2 {
        font-size: 2.5em;
        margin-bottom: 20px;
        color: var(--page-gem1-text-light);
      }

      .page-gem1__promo-banner-content p {
        font-size: 1.1em;
        margin-bottom: 40px;
        color: var(--page-gem1-text-light);
      }

      .page-gem1__faq-section {
        background-color: var(--page-gem1-secondary-color);
        padding: 60px 0;
      }

      .page-gem1__faq-list {
        max-width: 900px;
        margin: 40px auto 0 auto;
        text-align: left;
      }

      .page-gem1__faq-item {
        border: 1px solid var(--page-gem1-border-light);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
      }

      .page-gem1__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: var(--page-gem1-background-light);
        cursor: pointer;
        font-weight: bold;
        font-size: 1.1em;
        color: var(--page-gem1-text-dark);
        user-select: none;
        transition: background-color 0.3s ease;
      }

      .page-gem1__faq-question h3 {
        margin: 0;
        color: var(--page-gem1-text-dark);
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
      }

      .page-gem1__faq-question:hover {
        background-color: #e9e9e9;
      }

      .page-gem1__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
        transition: transform 0.3s ease;
      }

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

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

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

      .page-gem1__faq-answer p {
        margin-bottom: 0;
      }

      .page-gem1__floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: var(--page-gem1-login-button-color);
        color: var(--page-gem1-text-light);
        padding: 15px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        transition: transform 0.3s ease;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .page-gem1__floating-button:hover {
        transform: translateY(-5px);
      }

      .page-gem1__floating-button-icon {
        font-size: 1.2em;
      }

      .page-gem1 a {
        color: var(--page-gem1-primary-color);
        text-decoration: none;
      }

      .page-gem1 a:hover {
        text-decoration: underline;
      }

      /* Responsive styles */
      @media (max-width: 768px) {
        .page-gem1 {
          font-size: 16px;
          line-height: 1.6;
        }

        .page-gem1 h1 {
          font-size: 2em;
        }

        .page-gem1 h2 {
          font-size: 1.8em;
        }

        .page-gem1__hero-section {
          padding-top: 10px !important;
          padding-bottom: 40px;
        }

        .page-gem1__hero-content {
          padding: 0 15px;
        }

        .page-gem1__cta-buttons {
          flex-direction: column;
          align-items: center;
          gap: 10px;
        }

        .page-gem1__cta-button {
          width: 90% !important;
          max-width: 90% !important;
          padding: 12px 20px;
          box-sizing: border-box !important;
        }

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

        .page-gem1__section h2 {
          font-size: 1.8em;
          margin-bottom: 30px;
        }

        .page-gem1__game-categories-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .page-gem1__why-choose-list {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .page-gem1__why-choose-item {
          padding: 20px;
          flex-direction: column;
          align-items: center;
          text-align: center;
        }

        .page-gem1__why-choose-item-icon {
          margin-bottom: 15px;
        }

        .page-gem1__promo-banner {
          padding: 50px 15px;
        }

        .page-gem1__promo-banner-content h2 {
          font-size: 2em;
        }

        .page-gem1__faq-list {
          margin: 30px auto 0 auto;
          padding: 0 15px;
        }

        .page-gem1__faq-question {
          padding: 15px 20px;
          font-size: 1em;
        }

        .page-gem1__faq-answer {
          padding: 15px 20px !important;
        }

        .page-gem1__floating-button {
          bottom: 15px;
          right: 15px;
          padding: 12px 20px;
          font-size: 0.9em;
        }
        
        .page-gem1 img {
          max-width: 100% !important;
          width: 100% !important;
          height: auto !important;
        }

        .page-gem1 video {
          max-width: 100% !important;
          width: 100% !important;
          height: auto !important;
        }
        
        .page-gem1__section,
        .page-gem1__card,
        .page-gem1__container,
        .page-gem1__hero-image-wrapper,
        .page-gem1__promo-banner,
        .page-gem1__promo-banner-content,
        .page-gem1__faq-section,
        .page-gem1__faq-list,
        .page-gem1__faq-item,
        .page-gem1__faq-question,
        .page-gem1__faq-answer,
        .page-gem1__game-card,
        .page-gem1__why-choose-item,
        .page-gem1__cta-buttons,
        .page-gem1__button-group,
        .page-gem1__btn-container {
          max-width: 100% !important;
          width: 100% !important;
          box-sizing: border-box !important;
          padding-left: 15px;
          padding-right: 15px;
          overflow-x: hidden;
        }
        
        .page-gem1__game-categories-grid,
        .page-gem1__why-choose-list {
            padding-left: 0;
            padding-right: 0;
        }
        
        .page-gem1__game-card-content,
        .page-gem1__why-choose-item-content {
            padding-left: 15px;
            padding-right: 15px;
        }

        .page-gem1 ul, .page-gem1 ol {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-gem1 ul li, .page-gem1 ol 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;
        }
      }
    