.page-eee-jl-casino {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, relying on body for header-offset */
    }

    .page-eee-jl-casino__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-eee-jl-casino__section--dark {
      background-color: #0f0f1a;
    }

    .page-eee-jl-casino__header-text {
      text-align: center;
      margin-bottom: 30px;
    }

    .page-eee-jl-casino__header-text h1 {
      font-size: 2.8em;
      color: #e6b800;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-eee-jl-casino__header-text h2 {
      font-size: 2em;
      color: #e6b800;
      margin-bottom: 25px;
      line-height: 1.2;
    }

    .page-eee-jl-casino__header-text p {
      font-size: 1.1em;
      color: #cccccc;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-eee-jl-casino__hero-image {
      width: 100%;
      height: auto;
      max-height: 500px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 30px;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-eee-jl-casino__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #e6b800;
      color: #1a1a2e;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: center;
      box-sizing: border-box;
      min-width: 150px;
    }

    .page-eee-jl-casino__button:hover {
      background-color: #ffda47;
      transform: translateY(-2px);
    }

    .page-eee-jl-casino__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-eee-jl-casino__category-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 350px;
      box-sizing: border-box;
    }

    .page-eee-jl-casino__category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-eee-jl-casino__category-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      margin-bottom: 15px;
    }

    .page-eee-jl-casino__category-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-eee-jl-casino__category-title {
      font-size: 1.5em;
      color: #e6b800;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-eee-jl-casino__category-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px;
      flex-grow: 1;
    }

    .page-eee-jl-casino__category-button-wrapper {
      padding: 0 15px;
      margin-top: 20px;
    }

    .page-eee-jl-casino__promotion-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-items: center;
      text-align: center;
    }

    .page-eee-jl-casino__promotion-item:last-child {
      margin-bottom: 0;
    }

    .page-eee-jl-casino__promotion-title {
      font-size: 1.8em;
      color: #e6b800;
      margin-bottom: 10px;
    }

    .page-eee-jl-casino__promotion-description {
      font-size: 1em;
      color: #cccccc;
      margin-bottom: 15px;
    }

    .page-eee-jl-casino__promotion-image {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 0 auto 15px auto;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-eee-jl-casino__about-content {
      text-align: center;
      font-size: 1.1em;
      color: #cccccc;
    }

    .page-eee-jl-casino__about-content p {
      margin-bottom: 20px;
    }

    .page-eee-jl-casino__about-content ul {
      list-style: none;
      padding: 0;
      margin: 20px auto;
      max-width: 600px;
      text-align: left;
    }

    .page-eee-jl-casino__about-content li {
      background-color: #2a2a4a;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-eee-jl-casino__about-content li::before {
      content: '✓';
      color: #e6b800;
      font-weight: bold;
      margin-right: 10px;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-eee-jl-casino__section {
        padding: 30px 15px;
      }

      .page-eee-jl-casino__header-text h1 {
        font-size: 2em;
      }

      .page-eee-jl-casino__header-text h2 {
        font-size: 1.5em;
      }

      .page-eee-jl-casino__header-text p {
        font-size: 1em;
      }

      .page-eee-jl-casino__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-eee-jl-casino__button {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-eee-jl-casino__game-categories {
        grid-template-columns: 1fr;
      }

      .page-eee-jl-casino__category-card {
        min-height: auto;
      }

      .page-eee-jl-casino__category-image-wrapper {
        height: 180px;
      }

      .page-eee-jl-casino__promotion-item {
        padding: 20px;
      }

      .page-eee-jl-casino__promotion-title {
        font-size: 1.5em;
      }

      .page-eee-jl-casino__promotion-description {
        font-size: 0.95em;
      }

      .page-eee-jl-casino__about-content ul {
        padding: 0 10px;
      }

      .page-eee-jl-casino__about-content li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-eee-jl-casino__hero-image,
      .page-eee-jl-casino__category-image,
      .page-eee-jl-casino__promotion-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-eee-jl-casino__category-card,
      .page-eee-jl-casino__promotion-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-eee-jl-casino__category-title,
      .page-eee-jl-casino__category-description {
        padding: 0 10px;
      }
    }

    @media (max-width: 480px) {
      .page-eee-jl-casino__header-text h1 {
        font-size: 1.8em;
      }

      .page-eee-jl-casino__header-text h2 {
        font-size: 1.3em;
      }

      .page-eee-jl-casino__button {
        font-size: 1em;
        padding: 12px 25px;
      }

      .page-eee-jl-casino__promotion-title {
        font-size: 1.3em;
      }
    }