
    /* General styles for the page */
    .page-pinas77-slot-login-register-online-free {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
      padding-bottom: 40px; /* General padding to avoid content touching footer */
      padding-top: 10px; /* Small top padding for hero/first section, assuming body already handles header offset */
    }

    .page-pinas77-slot-login-register-online-free__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-pinas77-slot-login-register-online-free__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-pinas77-slot-login-register-online-free__section--dark h2,
    .page-pinas77-slot-login-register-online-free__section--dark h3 {
      color: #ecf0f1;
    }

    .page-pinas77-slot-login-register-online-free__title {
      text-align: center;
      color: #2c3e50;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-pinas77-slot-login-register-online-free__subtitle {
      text-align: center;
      color: #34495e;
      margin-bottom: 40px;
      font-size: 1.2em;
    }

    /* Hero Section */
    .page-pinas77-slot-login-register-online-free__hero {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      min-height: 400px;
      padding: 60px 20px;
      background: linear-gradient(135deg, #e74c3c, #c0392b); /* Example gradient */
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-pinas77-slot-login-register-online-free__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.7); /* Darken background image for text readability */
      max-width: 100%; /* Responsive image */
      box-sizing: border-box; /* Responsive image container */
    }

    .page-pinas77-slot-login-register-online-free__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-pinas77-slot-login-register-online-free__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #fff;
    }

    .page-pinas77-slot-login-register-online-free__hero-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-pinas77-slot-login-register-online-free__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #f39c12; /* A vibrant button color */
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none; /* Ensure it's a button, not a link visually */
      cursor: pointer;
      font-size: 1em;
    }

    .page-pinas77-slot-login-register-online-free__button:hover {
      background-color: #e67e22;
    }

    /* Floating Buttons for Register/Login */
    .page-pinas77-slot-login-register-online-free__floating-buttons {
      position: fixed;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 100;
    }

    .page-pinas77-slot-login-register-online-free__floating-button {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 80px;
      height: 80px;
      background-color: #3498db;
      color: #fff;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      text-decoration: none; /* Ensure it's not a link visually */
    }

    .page-pinas77-slot-login-register-online-free__floating-button:hover {
      background-color: #2980b9;
      transform: scale(1.05);
    }

    .page-pinas77-slot-login-register-online-free__floating-button--register {
      background-color: #2ecc71;
    }

    .page-pinas77-slot-login-register-online-free__floating-button--register:hover {
      background-color: #27ae60;
    }

    .page-pinas77-slot-login-register-online-free__floating-button--login {
      background-color: #f39c12;
    }

    .page-pinas77-slot-login-register-online-free__floating-button--login:hover {
      background-color: #e67e22;
    }

    /* Content Area */
    .page-pinas77-slot-login-register-online-free__content-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-pinas77-slot-login-register-online-free__card {
      background-color: #f9f9f9;
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-pinas77-slot-login-register-online-free__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-pinas77-slot-login-register-online-free__card-icon {
      margin-bottom: 15px;
      width: 100px; /* Display size */
      height: 100px; /* Display size */
      object-fit: contain;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
      box-sizing: border-box; /* Responsive image container */
    }

    .page-pinas77-slot-login-register-online-free__card-title {
      font-size: 1.5em;
      color: #34495e;
      margin-bottom: 10px;
    }

    .page-pinas77-slot-login-register-online-free__card-description {
      font-size: 0.95em;
      color: #555;
    }

    /* Image Gallery for Products */
    .page-pinas77-slot-login-register-online-free__gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-content: center; /* Center images if not filling grid */
    }

    .page-pinas77-slot-login-register-online-free__gallery-item {
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      background-color: #fff;
      text-align: center;
      max-width: 100%; /* Ensure item is responsive */
      box-sizing: border-box;
    }

    .page-pinas77-slot-login-register-online-free__gallery-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
      box-sizing: border-box; /* Responsive image container */
    }

    .page-pinas77-slot-login-register-online-free__gallery-caption {
      padding: 15px;
      font-size: 1.1em;
      font-weight: bold;
      color: #34495e;
    }

    /* List styling (Payment Methods, Game Providers) */
    .page-pinas77-slot-login-register-online-free__list {
      list-style: none;
      padding: 0;
      margin: 20px 0 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
    }

    .page-pinas77-slot-login-register-online-free__list-item {
      background-color: #f0f0f0;
      padding: 12px 20px;
      border-radius: 5px;
      font-size: 1em;
      color: #34495e;
      text-align: center;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    /* FAQ Section */
    .page-pinas77-slot-login-register-online-free__faq-container {
      max-width: 900px;
      margin: 40px auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      padding: 20px;
    }

    .page-pinas77-slot-login-register-online-free__faq-item {
      border-bottom: 1px solid #eee;
      padding: 15px 0;
    }

    .page-pinas77-slot-login-register-online-free__faq-item:last-child {
      border-bottom: none;
    }

    .page-pinas77-slot-login-register-online-free__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      font-size: 1.15em;
      color: #34495e;
      font-weight: bold;
      padding: 10px 0;
    }

    .page-pinas77-slot-login-register-online-free__faq-question:hover {
      color: #e74c3c;
    }

    .page-pinas77-slot-login-register-online-free__faq-question h3 {
        margin: 0; /* Remove default h3 margin */
        pointer-events: none; /* Prevent h3 from blocking click event on parent div */
        flex-grow: 1; /* Allow h3 to take available space */
    }

    .page-pinas77-slot-login-register-online-free__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent div */
      transition: transform 0.3s ease;
      color: #e74c3c;
    }

    .page-pinas77-slot-login-register-online-free__faq-item.active .page-pinas77-slot-login-register-online-free__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-pinas77-slot-login-register-online-free__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;
      font-size: 1em;
      color: #555;
      padding-top: 0; /* Adjust initial padding */
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-pinas77-slot-login-register-online-free__hero {
        min-height: 300px;
        padding: 40px 15px;
      }

      .page-pinas77-slot-login-register-online-free__hero-title {
        font-size: 2.2em;
      }

      .page-pinas77-slot-login-register-online-free__hero-text {
        font-size: 1em;
      }

      .page-pinas77-slot-login-register-online-free__section {
        padding: 30px 15px;
        margin-left: 10px;
        margin-right: 10px;
      }

      .page-pinas77-slot-login-register-online-free__title {
        font-size: 2em;
      }

      .page-pinas77-slot-login-register-online-free__floating-buttons {
        right: 10px;
        top: auto;
        bottom: 20px;
        flex-direction: row;
        width: calc(100% - 40px);
        justify-content: center;
        transform: none;
      }

      .page-pinas77-slot-login-register-online-free__floating-button {
        width: 60px;
        height: 60px;
        font-size: 0.8em;
      }

      .page-pinas77-slot-login-register-online-free__content-grid {
        grid-template-columns: 1fr;
      }

      .page-pinas77-slot-login-register-online-free__gallery {
        grid-template-columns: 1fr;
      }

      .page-pinas77-slot-login-register-online-free__gallery-image {
        height: 200px;
      }

      .page-pinas77-slot-login-register-online-free__list {
        grid-template-columns: 1fr;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-pinas77-slot-login-register-online-free__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-pinas77-slot-login-register-online-free__faq-container {
        margin: 20px 10px;
        padding: 15px;
      }

      .page-pinas77-slot-login-register-online-free__faq-question {
        font-size: 1em;
        padding: 8px 0;
      }

      .page-pinas77-slot-login-register-online-free__faq-answer {
        padding: 15px 10px !important;
        font-size: 0.95em;
      }
    }

    @media (max-width: 480px) {
      .page-pinas77-slot-login-register-online-free__hero-title {
        font-size: 1.8em;
      }
      .page-pinas77-slot-login-register-online-free__button {
        padding: 12px 25px;
        font-size: 0.9em;
      }
      .page-pinas77-slot-login-register-online-free__floating-buttons {
        gap: 10px;
      }
      .page-pinas77-slot-login-register-online-free__floating-button {
        width: 50px;
        height: 50px;
        font-size: 0.75em;
      }
    }
  