
    /* Base styles for the page */
    .page-yy777-bet-register {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 70px; /* Space for sticky buttons */
    }

    /* General image styling for responsiveness */
    .page-yy777-bet-register img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .page-yy777-bet-register__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      width: 100%;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-yy777-bet-register__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      text-align: center;
      padding: 80px 20px 60px;
      padding-top: 10px; /* Small top padding, main offset handled by body */
      margin-bottom: 40px;
      border-radius: 15px;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-yy777-bet-register__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

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

    .page-yy777-bet-register__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      font-weight: 700;
    }

    .page-yy777-bet-register__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
      font-weight: 400;
    }

    .page-yy777-bet-register__promo-link {
      display: inline-block;
      background-color: #ffda44; /* Bright yellow for CTA */
      color: #222;
      padding: 15px 35px;
      border-radius: 50px;
      font-size: 1.3em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .page-yy777-bet-register__promo-link:hover {
      background-color: #ffe67a;
      transform: translateY(-3px);
    }

    /* General Section Styling */
    .page-yy777-bet-register__section {
      background-color: #fff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      box-sizing: border-box;
    }

    .page-yy777-bet-register__section-title {
      font-size: 2.5em;
      color: #1a2a6c;
      margin-bottom: 25px;
      text-align: center;
      font-weight: 600;
      position: relative;
      padding-bottom: 10px;
    }

    .page-yy777-bet-register__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #b21f1f;
      border-radius: 2px;
    }

    .page-yy777-bet-register__item-description {
      font-size: 1em;
      color: #555;
    }

    /* Features Grid */
    .page-yy777-bet-register__features-grid,
    .page-yy777-bet-register__steps-grid,
    .page-yy777-bet-register__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-yy777-bet-register__feature-item,
    .page-yy777-bet-register__step-item,
    .page-yy777-bet-register__provider-item {
      text-align: center;
      padding: 30px 20px;
      border-radius: 10px;
      background-color: #f9f9f9;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-yy777-bet-register__feature-item:hover,
    .page-yy777-bet-register__step-item:hover,
    .page-yy777-bet-register__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .page-yy777-bet-register__item-icon {
      margin-bottom: 20px;
      width: 100px;
      height: 100px;
      object-fit: contain;
      border-radius: 8px;
    }
    .page-yy777-bet-register__item-icon--large {
      width: 150px;
      height: 150px;
    }

    .page-yy777-bet-register__item-title {
      font-size: 1.6em;
      color: #b21f1f;
      margin-bottom: 10px;
      font-weight: 600;
    }

    /* Steps Grid Specifics */
    .page-yy777-bet-register__steps-grid .page-yy777-bet-register__step-item {
      background-color: #e6f0ff; /* Lighter background for steps */
      position: relative;
      counter-increment: step-counter;
    }

    .page-yy777-bet-register__steps-grid .page-yy777-bet-register__step-item::before {
      content: counter(step-counter);
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #1a2a6c;
      color: #fff;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4em;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    /* Payment Methods */
    .page-yy777-bet-register__payment-methods {
      text-align: center;
    }

    .page-yy777-bet-register__payment-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-yy777-bet-register__payment-item {
      background-color: #f0f8ff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 15px 25px;
      font-weight: 600;
      color: #1a2a6c;
      font-size: 1.1em;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
      width: auto;
    }

    .page-yy777-bet-register__payment-item:hover {
      background-color: #e0efff;
    }

    /* Call to Action Section */
    .page-yy777-bet-register__cta-section {
      text-align: center;
      background-color: #1a2a6c;
      color: #fff;
      padding: 50px 20px;
      border-radius: 10px;
      margin-top: 30px;
      box-sizing: border-box;
    }

    .page-yy777-bet-register__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .page-yy777-bet-register__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section */
    .page-yy777-bet-register__faq-section {
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      background-color: #fff;
      box-sizing: border-box;
    }

    .page-yy777-bet-register__faq-title {
      font-size: 2.5em;
      color: #1a2a6c;
      margin-bottom: 25px;
      text-align: center;
      font-weight: 600;
      position: relative;
      padding-bottom: 10px;
    }

    .page-yy777-bet-register__faq-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #b21f1f;
      border-radius: 2px;
    }

    .page-yy777-bet-register__faq-item {
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #fefefe;
      box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }

    .page-yy777-bet-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: 600;
      color: #333;
      transition: background-color 0.3s ease;
    }

    .page-yy777-bet-register__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-yy777-bet-register__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #1a2a6c;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-yy777-bet-register__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #b21f1f;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

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

    .page-yy777-bet-register__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: #555;
      background-color: #fff;
      font-size: 1em;
    }

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

    /* Sticky Buttons (Register/Login) */
    .page-yy777-bet-register__sticky-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.95);
      padding: 10px 20px;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
      display: flex;
      justify-content: center;
      gap: 15px;
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-yy777-bet-register__sticky-button {
      flex: 1;
      max-width: 200px;
      padding: 12px 0;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    }

    .page-yy777-bet-register__sticky-button--register {
      background-color: #b21f1f; /* Red from site description */
      color: #fff;
    }

    .page-yy777-bet-register__sticky-button--register:hover {
      background-color: #d42323;
      transform: translateY(-2px);
    }

    .page-yy777-bet-register__sticky-button--login {
      background-color: #1a2a6c; /* Dark blue from site description */
      color: #fff;
    }

    .page-yy777-bet-register__sticky-button--login:hover {
      background-color: #2a3a7c;
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-yy777-bet-register__container {
        padding: 15px;
      }

      .page-yy777-bet-register__hero-section {
        padding: 60px 15px 40px;
        padding-top: 10px;
        margin-bottom: 30px;
      }

      .page-yy777-bet-register__hero-title {
        font-size: 2.5em;
      }

      .page-yy777-bet-register__hero-subtitle {
        font-size: 1.2em;
      }

      .page-yy777-bet-register__promo-link {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-yy777-bet-register__section {
        padding: 30px 20px;
        margin-bottom: 25px;
      }

      .page-yy777-bet-register__section-title {
        font-size: 2em;
      }

      .page-yy777-bet-register__features-grid,
      .page-yy777-bet-register__steps-grid,
      .page-yy777-bet-register__providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-yy777-bet-register__feature-item,
      .page-yy777-bet-register__step-item,
      .page-yy777-bet-register__provider-item {
        padding: 25px 15px;
      }

      .page-yy777-bet-register__item-title {
        font-size: 1.4em;
      }

      .page-yy777-bet-register__item-icon {
        width: 80px;
        height: 80px;
      }
      .page-yy777-bet-register__item-icon--large {
        width: 120px;
        height: 120px;
      }

      .page-yy777-bet-register__payment-list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }

      .page-yy777-bet-register__payment-item {
        width: 100% !important; /* Force full width for list items */
        max-width: 100% !important; /* Ensure it doesn't exceed container */
        box-sizing: border-box !important;
        padding: 12px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-yy777-bet-register__cta-section {
        padding: 40px 15px;
      }

      .page-yy777-bet-register__cta-title {
        font-size: 2em;
      }

      .page-yy777-bet-register__cta-description {
        font-size: 1em;
      }

      .page-yy777-bet-register__faq-section {
        padding: 30px 20px;
      }

      .page-yy777-bet-register__faq-title {
        font-size: 2em;
      }

      .page-yy777-bet-register__faq-question {
        padding: 12px 15px;
        font-size: 1.1em;
      }

      .page-yy777-bet-register__faq-question h3 {
        font-size: 1.1em;
      }

      .page-yy777-bet-register__faq-answer {
        padding: 15px 15px !important;
      }

      .page-yy777-bet-register__sticky-buttons {
        padding: 8px 15px;
        gap: 10px;
      }

      .page-yy777-bet-register__sticky-button {
        padding: 10px 0;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-yy777-bet-register__hero-title {
        font-size: 2em;
      }
      .page-yy777-bet-register__hero-subtitle {
        font-size: 1em;
      }
      .page-yy777-bet-register__promo-link {
        font-size: 1em;
      }
      .page-yy777-bet-register__section-title {
        font-size: 1.8em;
      }
      .page-yy777-bet-register__cta-title {
        font-size: 1.8em;
      }
    }
  