
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #FF4500; /* OrangeRed */
      --accent-color: #00BFFF; /* DeepSkyBlue */
      --text-color: #E0E0E0;
      --background-dark: #1A1A1A;
      --background-medium: #2C2C2C;
      --background-light: #3A3A3A;
      --border-color: #555;
      --font-family: 'Arial', sans-serif;
    }

    .page-jilihot-casino-login-register-philippines-app {
      font-family: var(--font-family);
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
    }

    .page-jilihot-casino-login-register-philippines-app__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-jilihot-casino-login-register-philippines-app__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:jilihot,casino,login,register,philippines,app,gaming]') center center / cover no-repeat;
      padding: 10px 0 60px 0; /* Adjusted for header offset */
      text-align: center;
      position: relative;
      overflow: hidden;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .page-jilihot-casino-login-register-philippines-app__hero-content {
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-jilihot-casino-login-register-philippines-app__hero-title {
      color: var(--primary-color);
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-jilihot-casino-login-register-philippines-app__hero-subtitle {
      color: var(--text-color);
      font-size: 1.3em;
      margin-bottom: 30px;
    }

    .page-jilihot-casino-login-register-philippines-app__action-button {
      display: inline-block;
      background-color: var(--secondary-color);
      color: #FFFFFF;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      margin: 10px;
    }

    .page-jilihot-casino-login-register-philippines-app__action-button:hover {
      background-color: #FF6347; /* Slightly lighter orange-red */
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-jilihot-casino-login-register-philippines-app__section {
      padding: 60px 20px;
      background-color: var(--background-medium);
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-jilihot-casino-login-register-philippines-app__section--alt {
      background-color: var(--background-light);
    }

    .page-jilihot-casino-login-register-philippines-app__section-title {
      color: var(--primary-color);
      font-size: 2.2em;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-jilihot-casino-login-register-philippines-app__section-title::after {
      content: '';
      width: 80px;
      height: 4px;
      background-color: var(--secondary-color);
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .page-jilihot-casino-login-register-philippines-app__text-content {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 30px auto;
      text-align: center;
    }

    /* Features / Steps Grid */
    .page-jilihot-casino-login-register-philippines-app__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jilihot-casino-login-register-philippines-app__grid-item {
      background-color: var(--background-dark);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Ensure padding/border included in width */
    }

    .page-jilihot-casino-login-register-philippines-app__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }

    .page-jilihot-casino-login-register-philippines-app__grid-item-icon {
      margin-bottom: 20px;
    }

    .page-jilihot-casino-login-register-philippines-app__grid-item-icon img {
      width: 250px; /* Min size 200x200 */
      height: auto;
      border-radius: 8px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-jilihot-casino-login-register-philippines-app__grid-item-title {
      color: var(--primary-color);
      font-size: 1.5em;
      margin-bottom: 15px;
    }

    .page-jilihot-casino-login-register-philippines-app__grid-item-description {
      color: var(--text-color);
    }

    /* Game Providers */
    .page-jilihot-casino-login-register-philippines-app__providers-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-jilihot-casino-login-register-philippines-app__provider-item {
      background-color: var(--background-dark);
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      width: 200px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
      box-sizing: border-box;
    }

    .page-jilihot-casino-login-register-philippines-app__provider-item img {
      width: 180px; /* Min size 200x200, but can be scaled down */
      height: auto;
      max-width: 100%;
      border-radius: 5px;
      box-sizing: border-box;
    }

    .page-jilihot-casino-login-register-philippines-app__provider-name {
      color: var(--primary-color);
      margin-top: 10px;
      font-weight: bold;
    }

    /* Payment Methods */
    .page-jilihot-casino-login-register-philippines-app__payments-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-jilihot-casino-login-register-philippines-app__payment-item {
      background-color: var(--background-dark);
      padding: 15px 20px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
      min-width: 120px;
      flex-basis: calc(25% - 20px); /* For desktop */
      box-sizing: border-box;
    }

    .page-jilihot-casino-login-register-philippines-app__payment-item img {
      width: 150px; /* Min size 200x200 */
      height: auto;
      max-width: 100%;
      border-radius: 5px;
      box-sizing: border-box;
    }

    .page-jilihot-casino-login-register-philippines-app__payment-name {
      color: var(--text-color);
      margin-top: 8px;
      font-weight: bold;
    }

    /* FAQ Section */
    .page-jilihot-casino-login-register-philippines-app__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-jilihot-casino-login-register-philippines-app__faq-item {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-jilihot-casino-login-register-philippines-app__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--background-light);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-jilihot-casino-login-register-philippines-app__faq-question:hover {
      background-color: #444;
    }

    .page-jilihot-casino-login-register-philippines-app__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      font-size: 1.2em;
      pointer-events: none; /* Crucial for click handling */
    }

    .page-jilihot-casino-login-register-philippines-app__faq-toggle {
      font-size: 1.8em;
      color: var(--accent-color);
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click handling */
    }

    .page-jilihot-casino-login-register-philippines-app__faq-item.active .page-jilihot-casino-login-register-philippines-app__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-jilihot-casino-login-register-philippines-app__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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-jilihot-casino-login-register-philippines-app__faq-item.active .page-jilihot-casino-login-register-philippines-app__faq-answer {
      max-height: 2000px !important; /* Large enough to contain content */
      padding: 20px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jilihot-casino-login-register-philippines-app__container {
        padding: 15px;
      }

      .page-jilihot-casino-login-register-philippines-app__hero-title {
        font-size: 2em;
      }

      .page-jilihot-casino-login-register-philippines-app__hero-subtitle {
        font-size: 1.1em;
      }

      .page-jilihot-casino-login-register-philippines-app__action-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-jilihot-casino-login-register-philippines-app__section {
        padding: 40px 15px;
      }

      .page-jilihot-casino-login-register-philippines-app__section-title {
        font-size: 1.8em;
      }

      .page-jilihot-casino-login-register-philippines-app__text-content {
        font-size: 1em;
      }

      .page-jilihot-casino-login-register-philippines-app__grid {
        grid-template-columns: 1fr;
      }

      .page-jilihot-casino-login-register-philippines-app__grid-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-jilihot-casino-login-register-philippines-app__grid-item-icon img {
        width: 200px; /* Ensure minimum size */
        height: auto;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-jilihot-casino-login-register-philippines-app__providers-list {
        flex-direction: column;
        align-items: center;
      }

      .page-jilihot-casino-login-register-philippines-app__provider-item {
        width: 100% !important;
        max-width: 300px !important; /* Constrain width for better display */
        box-sizing: border-box !important;
      }

      .page-jilihot-casino-login-register-philippines-app__provider-item img {
        width: 200px; /* Ensure minimum size */
        height: auto;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-jilihot-casino-login-register-philippines-app__payments-list {
        flex-direction: column;
        align-items: center;
      }

      .page-jilihot-casino-login-register-philippines-app__payment-item {
        width: 100% !important;
        max-width: 250px !important; /* Constrain width for better display */
        box-sizing: border-box !important;
        padding: 10px 15px;
      }

      .page-jilihot-casino-login-register-philippines-app__payment-item img {
        width: 200px; /* Ensure minimum size */
        height: auto;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-jilihot-casino-login-register-philippines-app__faq-question {
        padding: 12px 15px;
      }

      .page-jilihot-casino-login-register-philippines-app__faq-question h3 {
        font-size: 1.1em;
      }

      .page-jilihot-casino-login-register-philippines-app__faq-answer {
        padding: 0 15px;
      }
      .page-jilihot-casino-login-register-philippines-app__faq-item.active .page-jilihot-casino-login-register-philippines-app__faq-answer {
        padding: 15px !important;
      }
    }

    /* Word wrap for list items and descriptions to prevent overflow */
    .page-jilihot-casino-login-register-philippines-app__grid-item-description,
    .page-jilihot-casino-login-register-philippines-app__provider-name,
    .page-jilihot-casino-login-register-philippines-app__payment-name,
    .page-jilihot-casino-login-register-philippines-app__faq-answer {
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }
  