
    :root {
      --primary-color: #e6b800; /* Gold */
      --secondary-color: #333333; /* Dark Grey */
      --accent-color: #ff4500; /* OrangeRed */
      --text-color: #ffffff; /* White */
      --bg-color: #1a1a1a; /* Dark background */
      --card-bg: #2a2a2a; /* Slightly lighter dark for cards */
      --border-color: #444444; /* Grey border */
      --button-hover-color: #ffd700; /* Lighter gold */
    }

    /* Base styles for the page content, ensuring it doesn't interfere with shared components */
    .page-pinas77-slot-login-register-online {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--bg-color);
      line-height: 1.6;
      padding-bottom: 60px; /* Space for potential footer content */
    }

    .page-pinas77-slot-login-register-online__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-pinas77-slot-login-register-online__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-pinas77-slot-login-register-online__hero-section {
      position: relative;
      padding: 10px 0 100px; /* Small top padding, larger bottom for content */
      background-size: cover;
      background-position: center;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .page-pinas77-slot-login-register-online__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-pinas77-slot-login-register-online__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }

    .page-pinas77-slot-login-register-online__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: var(--primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-pinas77-slot-login-register-online__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--text-color);
    }

    .page-pinas77-slot-login-register-online__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-pinas77-slot-login-register-online__button {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
      border: none; /* Ensure no default button border */
      cursor: pointer;
    }

    .page-pinas77-slot-login-register-online__button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-3px);
    }

    .page-pinas77-slot-login-register-online__floating-buttons {
      position: fixed;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-pinas77-slot-login-register-online__floating-button {
      background-color: var(--accent-color);
      color: var(--text-color);
      padding: 12px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none; /* Ensure no default button border */
      cursor: pointer;
    }

    .page-pinas77-slot-login-register-online__floating-button:hover {
      background-color: #ff6347; /* Lighter OrangeRed */
      transform: scale(1.05);
    }

    .page-pinas77-slot-login-register-online__heading {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--primary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-pinas77-slot-login-register-online__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--primary-color);
      border-radius: 2px;
    }

    .page-pinas77-slot-login-register-online__sub-heading {
      font-size: 1.8em;
      margin-top: 40px;
      margin-bottom: 25px;
      color: var(--primary-color);
    }

    .page-pinas77-slot-login-register-online__text-content {
      font-size: 1.1em;
      max-width: 900px;
      margin: 0 auto 30px;
      color: var(--text-color);
    }

    .page-pinas77-slot-login-register-online__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-pinas77-slot-login-register-online__game-card {
      background-color: var(--card-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-pinas77-slot-login-register-online__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

    .page-pinas77-slot-login-register-online__game-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-bottom: 1px solid var(--border-color);
      display: flex; /* Centering image */
      align-items: center;
      justify-content: center;
    }

    .page-pinas77-slot-login-register-online__game-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-pinas77-slot-login-register-online__game-content {
      padding: 20px;
    }

    .page-pinas77-slot-login-register-online__game-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-pinas77-slot-login-register-online__game-description {
      font-size: 0.95em;
      color: #cccccc;
    }

    .page-pinas77-slot-login-register-online__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      list-style: none; /* Remove default list styling */
      padding: 0;
    }

    .page-pinas77-slot-login-register-online__step-item {
      background-color: var(--card-bg);
      border-radius: 12px;
      padding: 30px;
      width: calc(33% - 30px); /* Three items per row */
      min-width: 280px; /* Minimum width for responsiveness */
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Crucial for responsive width calculation */
    }

    .page-pinas77-slot-login-register-online__step-number {
      font-size: 2.5em;
      color: var(--accent-color);
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-pinas77-slot-login-register-online__step-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-pinas77-slot-login-register-online__step-description {
      font-size: 1em;
      color: #cccccc;
    }

    .page-pinas77-slot-login-register-online__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-pinas77-slot-login-register-online__payment-logo-wrapper {
      background-color: var(--card-bg);
      border-radius: 8px;
      padding: 15px 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 150px; /* Fixed width for payment logos */
      height: 80px; /* Fixed height */
      border: 1px solid var(--border-color);
      box-sizing: border-box;
      overflow: hidden; /* Ensure image fits */
    }

    .page-pinas77-slot-login-register-online__payment-logo {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    .page-pinas77-slot-login-register-online__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-pinas77-slot-login-register-online__feature-card {
      background-color: var(--card-bg);
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      border: 1px solid var(--border-color);
      box-sizing: border-box;
    }

    .page-pinas77-slot-login-register-online__feature-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-pinas77-slot-login-register-online__feature-description {
      font-size: 1em;
      color: #cccccc;
    }

    .page-pinas77-slot-login-register-online__faq-list {
      max-width: 900px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-pinas77-slot-login-register-online__faq-item {
      background-color: var(--card-bg);
      border-radius: 8px;
      margin-bottom: 15px;
      border: 1px solid var(--border-color);
      overflow: hidden;
    }

    .page-pinas77-slot-login-register-online__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      font-size: 1.2em;
      color: var(--text-color);
      background-color: #3a3a3a; /* Slightly different background for question */
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-pinas77-slot-login-register-online__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-pinas77-slot-login-register-online__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to match parent font size */
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-pinas77-slot-login-register-online__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-pinas77-slot-login-register-online__faq-item.active .page-pinas77-slot-login-register-online__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
    }

    .page-pinas77-slot-login-register-online__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-pinas77-slot-login-register-online__faq-item.active .page-pinas77-slot-login-register-online__faq-answer {
      max-height: 2000px !important; /* Sufficiently large height */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-pinas77-slot-login-register-online__hero-title {
        font-size: 2.8em;
      }
      .page-pinas77-slot-login-register-online__hero-description {
        font-size: 1.2em;
      }
      .page-pinas77-slot-login-register-online__heading {
        font-size: 2em;
      }
      .page-pinas77-slot-login-register-online__sub-heading {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-pinas77-slot-login-register-online__hero-section {
        min-height: 400px;
        padding: 10px 0 80px;
      }
      .page-pinas77-slot-login-register-online__hero-title {
        font-size: 2.2em;
      }
      .page-pinas77-slot-login-register-online__hero-description {
        font-size: 1em;
      }
      .page-pinas77-slot-login-register-online__button-group {
        flex-direction: column;
        gap: 15px;
      }
      .page-pinas77-slot-login-register-online__button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
      }
      .page-pinas77-slot-login-register-online__floating-buttons {
        right: 10px;
        gap: 10px;
      }
      .page-pinas77-slot-login-register-online__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
      }
      .page-pinas77-slot-login-register-online__section {
        padding: 40px 0;
      }
      .page-pinas77-slot-login-register-online__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-pinas77-slot-login-register-online__sub-heading {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 20px;
      }
      .page-pinas77-slot-login-register-online__text-content {
        font-size: 0.95em;
        margin-bottom: 20px;
      }
      .page-pinas77-slot-login-register-online__games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-pinas77-slot-login-register-online__game-card {
        margin: 0 auto;
        max-width: 350px; /* Constrain card width */
      }
      .page-pinas77-slot-login-register-online__step-item {
        width: 100% !important; /* Force full width */
        max-width: 350px !important; /* Constrain item width */
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px !important;
        box-sizing: border-box !important;
      }
      .page-pinas77-slot-login-register-online__steps-list {
        flex-direction: column; /* Stack steps vertically */
        align-items: center;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-pinas77-slot-login-register-online__payment-methods {
        flex-direction: column;
        align-items: center;
        gap: 15px;
      }
      .page-pinas77-slot-login-register-online__payment-logo-wrapper {
        width: 180px; /* Slightly wider for better visibility */
        height: 90px;
      }
      .page-pinas77-slot-login-register-online__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-pinas77-slot-login-register-online__feature-card {
        margin: 0 auto;
        max-width: 350px;
      }
      .page-pinas77-slot-login-register-online__faq-list {
        padding: 0 10px;
      }
      .page-pinas77-slot-login-register-online__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-pinas77-slot-login-register-online__faq-answer {
        padding: 15px 20px;
      }
      .page-pinas77-slot-login-register-online__faq-item.active .page-pinas77-slot-login-register-online__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsiveness */
      .page-pinas77-slot-login-register-online__game-image,
      .page-pinas77-slot-login-register-online__payment-logo {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-pinas77-slot-login-register-online__game-image-wrapper,
      .page-pinas77-slot-login-register-online__payment-logo-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
      .page-pinas77-slot-login-register-online__game-description,
      .page-pinas77-slot-login-register-online__step-description,
      .page-pinas77-slot-login-register-online__feature-description,
      .page-pinas77-slot-login-register-online__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-pinas77-slot-login-register-online__hero-title {
        font-size: 1.8em;
      }
      .page-pinas77-slot-login-register-online__hero-description {
        font-size: 0.9em;
      }
      .page-pinas77-slot-login-register-online__heading {
        font-size: 1.5em;
      }
      .page-pinas77-slot-login-register-online__floating-buttons {
        right: 5px;
      }
    }
  