
    :root {
      --plus777-primary-color: #e44d26; /* A vibrant orange/red for casino theme */
      --plus777-secondary-color: #333;
      --plus777-accent-color: #f0ad4e;
      --plus777-background-light: #f8f8f8;
      --plus777-text-dark: #333;
      --plus777-text-light: #fff;
      --plus777-border-color: #ddd;
    }

    /* Fallback for header offset if body padding-top is not set by shared.css */
    .page-plus777-me {
      padding-top: var(--header-offset, 122px); /* Default to 122px if --header-offset is not defined */
      box-sizing: border-box; /* Ensure padding is included in element's total width/height */
    }

    /* General Styling */
    .page-plus777-me {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--plus777-text-dark);
      background-color: var(--plus777-background-light);
      padding-bottom: 40px; /* Add some padding at the bottom before footer */
    }

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

    .page-plus777-me__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-plus777-me__section--dark {
      background-color: var(--plus777-secondary-color);
      color: var(--plus777-text-light);
    }

    .page-plus777-me__section--dark .page-plus777-me__section-title {
        color: var(--plus777-accent-color);
    }

    .page-plus777-me__section-title {
      font-size: 2.5em;
      color: var(--plus777-primary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-plus777-me__section-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-plus777-me__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:online_casino,gaming_background,plus777]') no-repeat center center/cover;
      color: var(--plus777-text-light);
      padding: 100px 0; /* Adjusted padding to ensure content is visible */
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 60vh;
      position: relative;
      padding-top: 10px; /* Small decorative top padding, assuming body has main offset */
    }

    .page-plus777-me__hero-content {
      max-width: 800px;
      text-align: center;
    }

    .page-plus777-me__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--plus777-accent-color);
    }

    .page-plus777-me__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-plus777-me__button {
      display: inline-block;
      background-color: var(--plus777-primary-color);
      color: var(--plus777-text-light);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-plus777-me__button:hover {
      background-color: #c73d1c;
    }

    /* Floating Buttons for Register/Login */
    .page-plus777-me__floating-buttons {
        position: fixed;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .page-plus777-me__floating-button {
        background-color: var(--plus777-primary-color);
        color: var(--plus777-text-light);
        padding: 10px 15px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        transition: background-color 0.3s ease;
        border: none; /* Ensure it looks like a button */
        cursor: pointer;
        min-width: 80px;
    }

    .page-plus777-me__floating-button:hover {
        background-color: #c73d1c;
    }

    /* Content Sections */
    .page-plus777-me__text-block {
      max-width: 900px;
      margin: 0 auto 30px auto;
      text-align: left;
      font-size: 1.1em;
    }

    .page-plus777-me__text-block h3 {
      font-size: 2em;
      color: var(--plus777-primary-color);
      margin-bottom: 15px;
    }

    .page-plus777-me__text-block p {
      margin-bottom: 15px;
    }

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

    .page-plus777-me__category-card {
      background-color: var(--plus777-text-light);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-plus777-me__category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-plus777-me__category-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-plus777-me__category-title {
      font-size: 1.5em;
      color: var(--plus777-primary-color);
      padding: 15px;
      margin: 0;
      background-color: #f0f0f0;
    }

    .page-plus777-me__category-description {
      padding: 15px;
      font-size: 0.95em;
      color: var(--plus777-secondary-color);
    }

    /* Game Providers */
    .page-plus777-me__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-plus777-me__provider-item {
      background-color: var(--plus777-text-light);
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      font-weight: bold;
      color: var(--plus777-primary-color);
      transition: transform 0.2s ease;
    }

    .page-plus777-me__provider-item:hover {
      transform: translateY(-3px);
    }

    /* Promotions Section */
    .page-plus777-me__promotion-card {
      background-color: var(--plus777-text-light);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      margin-bottom: 30px;
      text-align: left;
      display: flex;
      flex-direction: column;
    }

    .page-plus777-me__promotion-card-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-plus777-me__promotion-card-content {
      padding: 20px;
    }

    .page-plus777-me__promotion-card-title {
      font-size: 1.8em;
      color: var(--plus777-primary-color);
      margin-bottom: 10px;
    }

    .page-plus777-me__promotion-card-description {
      font-size: 1em;
      color: var(--plus777-secondary-color);
      margin-bottom: 15px;
    }

    /* Payment Methods */
    .page-plus777-me__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-plus777-me__payment-logo {
      width: 120px;
      height: 60px;
      object-fit: contain;
      max-width: 100%;
      transition: transform 0.2s ease;
    }

    .page-plus777-me__payment-logo:hover {
      transform: scale(1.05);
    }

    /* FAQ Section */
    .page-plus777-me__faq-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

    .page-plus777-me__faq-item {
      background-color: var(--plus777-text-light);
      border: 1px solid var(--plus777-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

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

    .page-plus777-me__faq-question:hover {
      background-color: #eee;
    }

    .page-plus777-me__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
      color: var(--plus777-primary-color); /* Ensure contrast */
    }

    .page-plus777-me__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
      color: var(--plus777-primary-color); /* Ensure contrast */
    }

    .page-plus777-me__faq-item.active .page-plus777-me__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-plus777-me__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(--plus777-text-dark); /* Ensure contrast */
    }

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

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-plus777-me__hero-title {
        font-size: 3em;
      }
      .page-plus777-me__section-title {
        font-size: 2em;
      }
      .page-plus777-me__game-categories {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-plus777-me__hero-section {
        padding: 80px 0;
      }
      .page-plus777-me__hero-title {
        font-size: 2.5em;
      }
      .page-plus777-me__hero-description {
        font-size: 1.1em;
      }
      .page-plus777-me__section {
        padding: 30px 0;
      }
      .page-plus777-me__section-title {
        font-size: 1.8em;
      }
      .page-plus777-me__game-categories,
      .page-plus777-me__providers-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
      }
      .page-plus777-me__category-image,
      .page-plus777-me__promotion-card-image {
        height: 200px;
      }
      .page-plus777-me__promotion-card-title {
        font-size: 1.5em;
      }
      .page-plus777-me__floating-buttons {
          flex-direction: row;
          width: 100%;
          right: 0;
          left: 0;
          bottom: 0;
          top: auto;
          transform: none;
          justify-content: center;
          padding: 10px 0;
          background-color: rgba(0,0,0,0.8);
          box-shadow: 0 -4px 8px rgba(0,0,0,0.2);
      }
      .page-plus777-me__floating-button {
          padding: 8px 12px;
          font-size: 0.9em;
      }

      /* List Item Mobile Responsive Rules - Apply to game categories, providers, etc. */
      .page-plus777-me__game-categories > *,
      .page-plus777-me__providers-grid > *,
      .page-plus777-me__faq-list > * {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          padding-left: 15px !important; /* Adjust padding to prevent content from touching edges */
          padding-right: 15px !important; /* Adjust padding to prevent content from touching edges */
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }
      .page-plus777-me__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-plus777-me__faq-answer {
        padding: 15px 15px !important; /* Ensure mobile padding is also adjusted */
      }
      .page-plus777-me__payment-logo {
        width: 100px;
        height: 50px;
      }
    }

    @media (max-width: 480px) {
      .page-plus777-me__hero-title {
        font-size: 2em;
      }
      .page-plus777-me__hero-description {
        font-size: 1em;
      }
      .page-plus777-me__section-title {
        font-size: 1.5em;
      }
      .page-plus777-me__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-plus777-me__floating-buttons {
        gap: 10px;
      }
      .page-plus777-me__floating-button {
        padding: 6px 10px;
        font-size: 0.8em;
      }
    }
  