:root {
      --primary-color: #FFD700; /* Gold/Yellow for highlights */
      --secondary-color: #00BFFF; /* Deep sky blue for accents */
      --text-color: #FFFFFF; /* White text */
      --background-dark: #1a1a2e; /* Dark background */
      --card-background: #16213e; /* Slightly lighter dark for cards */
      --border-color: #0f3460; /* Darker blue for borders */
    }

    body {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
    }

    .page-joyjili-club {
      padding-bottom: 40px; /* Space above footer */
      padding-top: 10px; /* Small decorative top padding, assuming body has header offset */
    }

    .page-joyjili-club__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-joyjili-club__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 40px;
      padding-top: 40px;
      text-transform: uppercase;
    }

    .page-joyjili-club__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: center;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-joyjili-club__highlight {
      color: var(--primary-color);
      font-weight: bold;
    }

    /* Hero Section */
    .page-joyjili-club__hero-section {
      position: relative;
      width: 100%;
      height: 600px; /* Adjust height as needed */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .page-joyjili-club__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .page-joyjili-club__hero-content {
      position: relative;
      z-index: 1;
      color: var(--text-color);
      background: rgba(0, 0, 0, 0.6);
      padding: 30px;
      border-radius: 10px;
      max-width: 900px;
    }

    .page-joyjili-club__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--primary-color);
      line-height: 1.2;
    }

    .page-joyjili-club__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
    }

    .page-joyjili-club__hero-cta-button {
      display: inline-block;
      background-color: var(--secondary-color);
      color: var(--text-color);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-joyjili-club__hero-cta-button:hover {
      background-color: #009ACD; /* Slightly darker secondary color */
    }

    /* Payment Providers Section */
    .page-joyjili-club__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 40px 15px;
      background-color: var(--card-background);
      margin-bottom: 40px;
    }

    .page-joyjili-club__payment-logos-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      width: 100%;
    }

    .page-joyjili-club__payment-logo {
      flex: 0 0 auto;
      width: 80px;
      height: 80px;
      max-width: 80px;
      max-height: 80px;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--background-dark);
      border-radius: 8px;
      padding: 5px;
    }

    .page-joyjili-club__payment-logo img {
      display: block;
      width: 80px !important;
      height: 80px !important;
      max-width: 80px !important;
      max-height: 80px !important;
      object-fit: contain;
    }

    /* Quick Access Section */
    .page-joyjili-club__quick-access-section {
      padding: 40px 0;
      background-color: var(--background-dark);
      margin-bottom: 40px;
    }

    .page-joyjili-club__access-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-joyjili-club__access-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--background-dark);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      min-width: 200px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-joyjili-club__access-button:hover {
      background-color: #E6B800; /* Slightly darker gold */
      transform: translateY(-3px);
    }

    /* Games Section */
    .page-joyjili-club__games-section {
      padding: 40px 0;
      background-color: var(--card-background);
      margin-bottom: 40px;
    }

    .page-joyjili-club__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-joyjili-club__game-card {
      background-color: var(--background-dark);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-joyjili-club__game-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-joyjili-club__game-title {
      font-size: 1.8em;
      color: var(--secondary-color);
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-joyjili-club__game-description {
      font-size: 1em;
      color: #CCC;
      margin-bottom: 20px;
      flex-grow: 1;
      padding: 0 15px;
    }

    .page-joyjili-club__game-button {
      display: inline-block;
      background-color: var(--secondary-color);
      color: var(--text-color);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: auto; /* Push button to bottom */
    }

    .page-joyjili-club__game-button:hover {
      background-color: #009ACD;
    }

    /* Promotions Section */
    .page-joyjili-club__promotions-section {
      padding: 40px 0;
      background-color: var(--background-dark);
      margin-bottom: 40px;
    }

    .page-joyjili-club__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-joyjili-club__promo-card {
      background-color: var(--card-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-joyjili-club__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-joyjili-club__promo-title {
      font-size: 1.8em;
      color: var(--primary-color);
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-joyjili-club__promo-description {
      font-size: 1em;
      color: #CCC;
      margin-bottom: 20px;
      flex-grow: 1;
      padding: 0 15px;
    }

    .page-joyjili-club__promo-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--background-dark);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: auto;
    }

    .page-joyjili-club__promo-button:hover {
      background-color: #E6B800;
    }

    /* Security Section */
    .page-joyjili-club__security-section {
      padding: 40px 0;
      background-color: var(--card-background);
      margin-bottom: 40px;
    }

    .page-joyjili-club__security-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-joyjili-club__security-item {
      background-color: var(--background-dark);
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      padding: 30px 20px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
    }

    .page-joyjili-club__security-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
    }

    .page-joyjili-club__security-title {
      font-size: 1.5em;
      color: var(--secondary-color);
      margin-bottom: 15px;
    }

    .page-joyjili-club__security-description {
      font-size: 1em;
      color: #CCC;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-joyjili-club__support-button {
      display: inline-block;
      background-color: var(--secondary-color);
      color: var(--text-color);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: auto;
    }

    .page-joyjili-club__support-button:hover {
      background-color: #009ACD;
    }

    /* FAQ Section */
    .page-joyjili-club__faq-section {
      padding: 40px 0;
      background-color: var(--background-dark);
      margin-bottom: 40px;
    }

    .page-joyjili-club__faq-list {
      max-width: 900px;
      margin: 30px auto 0;
      border: 1px solid var(--border-color);
      border-radius: 10px;
      overflow: hidden;
    }

    .page-joyjili-club__faq-item {
      border-bottom: 1px solid var(--border-color);
    }

    .page-joyjili-club__faq-item:last-child {
      border-bottom: none;
    }

    .page-joyjili-club__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--card-background);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-joyjili-club__faq-question:hover {
      background-color: #2a3b5c; /* Slightly lighter hover for contrast */
    }

    .page-joyjili-club__faq-question-title {
      font-size: 1.2em;
      color: var(--text-color);
      margin: 0;
      flex-grow: 1;
      text-align: left;
    }

    .page-joyjili-club__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      margin-left: 20px;
      transition: transform 0.3s ease;
    }

    .page-joyjili-club__faq-item.active .page-joyjili-club__faq-toggle {
      transform: rotate(45deg);
    }

    .page-joyjili-club__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: var(--background-dark);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #DDD;
    }

    .page-joyjili-club__faq-item.active .page-joyjili-club__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-joyjili-club__faq-answer p {
      margin: 0;
      font-size: 1em;
    }

    /* Blog Section */
    .page-joyjili-club__blog-section {
      padding: 40px 0;
      background-color: var(--card-background);
    }

    .page-joyjili-club__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-joyjili-club__blog-card {
      background-color: var(--background-dark);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-joyjili-club__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-joyjili-club__blog-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin: 15px 15px 10px;
      line-height: 1.3;
    }

    .page-joyjili-club__blog-title a {
      color: var(--primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-joyjili-club__blog-title a:hover {
      color: var(--secondary-color);
    }

    .page-joyjili-club__blog-meta {
      font-size: 0.9em;
      color: #AAA;
      margin: 0 15px 10px;
    }

    .page-joyjili-club__blog-summary {
      font-size: 1em;
      color: #CCC;
      margin: 0 15px 20px;
      flex-grow: 1;
    }

    .page-joyjili-club__blog-readmore {
      display: inline-block;
      background-color: var(--secondary-color);
      color: var(--text-color);
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin: 0 15px 15px;
      align-self: flex-start;
    }

    .page-joyjili-club__blog-readmore:hover {
      background-color: #009ACD;
    }

    /* General Image and List Item Responsive Styles */
    img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    ul, ol {
      padding: 0;
      margin: 0;
      list-style: none;
    }

    ul li, ol li {
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .page-joyjili-club__hero-section {
        height: 450px;
      }

      .page-joyjili-club__hero-content {
        padding: 20px;
      }

      .page-joyjili-club__hero-title {
        font-size: 2.2em;
      }

      .page-joyjili-club__hero-description {
        font-size: 1em;
      }

      .page-joyjili-club__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-joyjili-club__section-title {
        font-size: 2em;
        margin-bottom: 30px;
        padding-top: 30px;
      }

      .page-joyjili-club__text-content {
        font-size: 1em;
      }

      /* Payment Providers specific mobile rules */
      .page-joyjili-club__payment-providers {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 30px 10px;
      }
      .page-joyjili-club__payment-logos-wrapper {
        gap: 16px;
      }
      .page-joyjili-club__payment-logo,
      .page-joyjili-club__payment-logo img {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }

      .page-joyjili-club__access-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-joyjili-club__access-button {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 1em;
        padding: 10px 20px;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-joyjili-club__game-categories,
      .page-joyjili-club__promo-grid,
      .page-joyjili-club__security-grid,
      .page-joyjili-club__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-joyjili-club__game-image,
      .page-joyjili-club__promo-image,
      .page-joyjili-club__security-icon,
      .page-joyjili-club__blog-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-joyjili-club__game-card,
      .page-joyjili-club__promo-card,
      .page-joyjili-club__security-item,
      .page-joyjili-club__blog-card {
        padding-bottom: 15px;
      }

      .page-joyjili-club__game-title,
      .page-joyjili-club__promo-title,
      .page-joyjili-club__security-title,
      .page-joyjili-club__blog-title {
        font-size: 1.4em;
        margin: 10px 10px 8px;
      }

      .page-joyjili-club__game-description,
      .page-joyjili-club__promo-description,
      .page-joyjili-club__security-description,
      .page-joyjili-club__blog-summary {
        font-size: 0.95em;
        padding: 0 10px;
      }

      .page-joyjili-club__faq-question {
        padding: 15px 20px;
      }

      .page-joyjili-club__faq-question-title {
        font-size: 1.1em;
      }

      .page-joyjili-club__faq-toggle {
        font-size: 1.5em;
        margin-left: 15px;
      }

      .page-joyjili-club__faq-answer {
        padding: 0 20px;
      }

      .page-joyjili-club__faq-item.active .page-joyjili-club__faq-answer {
        padding: 15px 20px !important;
      }

      .page-joyjili-club__blog-readmore {
        margin: 0 10px 10px;
      }
    }