
    :root {
      --primary-color: #e44d26; /* A vibrant orange-red, common in gaming/casino sites */
      --secondary-color: #f7b731; /* A bright yellow-orange for accents */
      --text-color: #333333;
      --light-text-color: #ffffff;
      --background-color: #f0f2f5;
      --dark-background-color: #2c3e50; /* Dark blue-grey for contrast sections */
      --border-color: #dddddd;
      --button-hover-color: #c23e1c;
      /* --header-offset is typically defined in shared.css, providing a fallback here */
      --header-offset: 122px; 
    }

    /* Base styles for the page */
    .page-https-www-plus777-com-login {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-color);
      padding-bottom: 40px; /* Ensure space above footer */
      /* Applying padding-top to main, assuming body does not apply it globally */
      padding-top: var(--header-offset, 122px); 
    }

    @media (max-width: 768px) {
      .page-https-www-plus777-com-login {
        padding-top: var(--header-offset, 122px); /* Ensure mobile also respects header offset */
      }
    }

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

    @media (max-width: 768px) {
      .page-https-www-plus777-com-login__container {
        padding: 15px;
      }
    }

    .page-https-www-plus777-com-login__section {
      background-color: var(--light-text-color);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      margin-bottom: 30px;
      padding: 30px;
    }

    @media (max-width: 768px) {
      .page-https-www-plus777-com-login__section {
        padding: 20px;
        margin-bottom: 20px;
      }
    }

    .page-https-www-plus777-com-login__hero-section {
      background: linear-gradient(135deg, var(--dark-background-color) 0%, #4a69bd 100%);
      color: var(--light-text-color);
      padding: 80px 20px;
      text-align: center;
      border-radius: 0; /* No border-radius for hero section */
      box-shadow: none;
      margin-bottom: 0; /* No margin-bottom for hero */
      position: relative;
      overflow: hidden;
      /* No padding-top here as the main container handles the header offset */
    }

    .page-https-www-plus777-com-login__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
      z-index: 1;
    }

    .page-https-www-plus777-com-login__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-https-www-plus777-com-login__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      font-weight: bold;
      color: var(--secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    @media (max-width: 768px) {
      .page-https-www-plus777-com-login__hero-title {
        font-size: 2.2em;
      }
    }

    .page-https-www-plus777-com-login__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      line-height: 1.4;
      color: var(--light-text-color);
    }

    @media (max-width: 768px) {
      .page-https-www-plus777-com-login__hero-subtitle {
        font-size: 1.1em;
      }
    }

    .page-https-www-plus777-com-login__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--light-text-color);
      padding: 14px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-https-www-plus777-com-login__button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-2px);
    }

    .page-https-www-plus777-com-login__button--secondary {
      background-color: var(--secondary-color);
      color: var(--dark-background-color);
    }

    .page-https-www-plus777-com-login__button--secondary:hover {
      background-color: #e0a32e;
    }

    .page-https-www-plus777-com-login__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      border-radius: 8px;
      margin-top: 20px;
      box-sizing: border-box;
    }

    .page-https-www-plus777-com-login__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    @media (max-width: 768px) {
      .page-https-www-plus777-com-login__image-wrapper {
        border-radius: 6px;
        margin-top: 15px;
      }
      .page-https-www-plus777-com-login__image {
        border-radius: 6px;
      }
    }

    .page-https-www-plus777-com-login__title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .page-https-www-plus777-com-login__title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
    }

    .page-https-www-plus777-com-login__subtitle {
      font-size: 1.8em;
      color: var(--dark-background-color);
      margin-top: 25px;
      margin-bottom: 15px;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .page-https-www-plus777-com-login__subtitle {
        font-size: 1.4em;
        margin-top: 20px;
        margin-bottom: 10px;
      }
    }

    .page-https-www-plus777-com-login__text-block {
      margin-bottom: 20px;
      font-size: 1.1em;
      color: var(--text-color);
    }

    @media (max-width: 768px) {
      .page-https-www-plus777-com-login__text-block {
        font-size: 1em;
        margin-bottom: 15px;
      }
    }

    .page-https-www-plus777-com-login__steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .page-https-www-plus777-com-login__step-item {
      background-color: var(--background-color);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 25px;
      flex: 1;
      min-width: 280px;
      max-width: calc(33% - 20px);
      box-sizing: border-box;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-https-www-plus777-com-login__step-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    @media (max-width: 992px) {
      .page-https-www-plus777-com-login__step-item {
        max-width: calc(50% - 20px);
      }
    }

    @media (max-width: 768px) {
      .page-https-www-plus777-com-login__steps-list {
        flex-direction: column;
        gap: 15px;
      }
      .page-https-www-plus777-com-login__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    .page-https-www-plus777-com-login__step-number {
      font-size: 2.5em;
      color: var(--secondary-color);
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1;
    }

    .page-https-www-plus777-com-login__step-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-https-www-plus777-com-login__step-description {
      font-size: 0.95em;
      color: var(--text-color);
    }

    .page-https-www-plus777-com-login__highlight-box {
      background-color: #fff3e0; /* Light orange background */
      border-left: 5px solid var(--secondary-color);
      padding: 20px;
      border-radius: 8px;
      margin-top: 30px;
      margin-bottom: 30px;
      color: #663c00; /* Darker text for contrast */
      font-size: 1.1em;
    }

    @media (max-width: 768px) {
      .page-https-www-plus777-com-login__highlight-box {
        padding: 15px;
        font-size: 1em;
      }
    }

    .page-https-www-plus777-com-login__faq-section {
      background-color: var(--light-text-color);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      margin-bottom: 30px;
      padding: 30px;
    }

    @media (max-width: 768px) {
      .page-https-www-plus777-com-login__faq-section {
        padding: 20px;
        margin-bottom: 20px;
      }
    }

    .page-https-www-plus777-com-login__faq-item {
      border-bottom: 1px solid var(--border-color);
      margin-bottom: 10px;
    }

    .page-https-www-plus777-com-login__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-https-www-plus777-com-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px 0;
      font-size: 1.2em;
      color: var(--dark-background-color);
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-https-www-plus777-com-login__faq-question:hover {
      background-color: #f9f9f9;
    }

    @media (max-width: 768px) {
      .page-https-www-plus777-com-login__faq-question {
        font-size: 1em;
        padding: 12px 0;
      }
    }

    .page-https-www-plus777-com-login__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
      font-size: 1.2em; /* Ensure consistent font size */
      color: var(--dark-background-color);
    }

    @media (max-width: 768px) {
      .page-https-www-plus777-com-login__faq-question h3 {
        font-size: 1em;
      }
    }

    .page-https-www-plus777-com-login__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
      line-height: 1;
    }

    .page-https-www-plus777-com-login__faq-item.active .page-https-www-plus777-com-login__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or similar) */
      /* content: '−'; Visually change to minus, actual text change via JS */
    }

    .page-https-www-plus777-com-login__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);
    }

    .page-https-www-plus777-com-login__faq-item.active .page-https-www-plus777-com-login__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to accommodate content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    @media (max-width: 768px) {
      .page-https-www-plus777-com-login__faq-answer {
        padding: 0 10px;
      }
      .page-https-www-plus777-com-login__faq-item.active .page-https-www-plus777-com-login__faq-answer {
        padding: 15px 10px !important;
      }
    }

    /* Floating Login/Register Buttons */
    .page-https-www-plus777-com-login__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(0, 0, 0, 0.7);
      padding: 10px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 768px) {
      .page-https-www-plus777-com-login__floating-buttons {
        bottom: 15px;
        gap: 10px;
        padding: 8px 15px;
      }
    }

    .page-https-www-plus777-com-login__floating-button {
      background-color: var(--primary-color);
      color: var(--light-text-color);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 0.95em;
      white-space: nowrap; /* Prevent button text from wrapping */
    }

    .page-https-www-plus777-com-login__floating-button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-2px);
    }

    .page-https-www-plus777-com-login__floating-button--register {
      background-color: var(--secondary-color);
      color: var(--dark-background-color);
    }

    .page-https-www-plus777-com-login__floating-button--register:hover {
      background-color: #e0a32e;
    }

    /* General text styles */
    .page-https-www-plus777-com-login p {
      margin-bottom: 1em;
    }

    .page-https-www-plus777-com-login strong {
      color: var(--primary-color);
    }
  