
    .page-ae-casino {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Hero Section */
    .page-ae-casino__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Responsive height */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #ffffff;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, assuming body handles header offset */
    }

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

    .page-ae-casino__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
      z-index: 2;
    }

    .page-ae-casino__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
    }

    .page-ae-casino__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #f9d342; /* Gold/yellow for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      word-wrap: break-word; /* Ensure title wraps on small screens */
      overflow-wrap: break-word;
    }

    .page-ae-casino__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-ae-casino__hero-cta {
      margin-top: 20px;
    }

    /* General Section Styling */
    .page-ae-casino__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-ae-casino__section-title {
      font-size: 2.2em;
      color: #f9d342;
      margin-bottom: 30px;
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-ae-casino__section-description {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Call to Action Button */
    .page-ae-casino__cta-button {
      display: inline-block;
      background-color: #e74c3c; /* Red for action */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-ae-casino__cta-button:hover {
      background-color: #c0392b;
    }

    .page-ae-casino__cta-button--large {
      padding: 15px 30px;
      font-size: 1.3em;
    }

    /* Product Grid */
    .page-ae-casino__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-ae-casino__product-item {
      background-color: #2a2a4a; /* Slightly lighter dark background for items */
      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-ae-casino__product-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-bottom: 3px solid #f9d342;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
    }

    .page-ae-casino__product-name {
      font-size: 1.5em;
      color: #f9d342;
      margin: 20px 15px 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-ae-casino__product-desc {
      font-size: 0.95em;
      color: #e0e0e0;
      padding: 0 15px;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-ae-casino__promotions-section {
      background-color: #1a1a2e;
    }

    .page-ae-casino__promo-card {
      display: flex;
      flex-direction: column;
      background-color: #2a2a4a;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      margin-bottom: 30px;
      overflow: hidden;
      text-align: left;
    }

    .page-ae-casino__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      max-width: 100%;
      height: auto;
    }

    .page-ae-casino__promo-content {
      padding: 25px;
    }

    .page-ae-casino__promo-title {
      font-size: 1.8em;
      color: #f9d342;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-ae-casino__promo-desc {
      font-size: 1em;
      color: #e0e0e0;
      margin-bottom: 20px;
    }

    /* Providers and Payments Lists */
    .page-ae-casino__provider-list,
    .page-ae-casino__payment-list {
      list-style: none;
      padding: 0;
      margin: 30px auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      max-width: 900px;
    }

    .page-ae-casino__provider-item,
    .page-ae-casino__payment-item {
      background-color: #34495e; /* Blue-grey for list items */
      color: #ffffff;
      padding: 12px 20px;
      border-radius: 25px;
      font-size: 1em;
      font-weight: bold;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for responsive list items */
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Floating Register/Login Buttons */
    .page-ae-casino__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-ae-casino__register-btn,
    .page-ae-casino__login-btn {
      display: block;
      background-color: #e74c3c; /* Red */
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
    }

    .page-ae-casino__register-btn:hover,
    .page-ae-casino__login-btn:hover {
      background-color: #c0392b;
    }

    /* FAQ Section */
    .page-ae-casino__faq-section {
      background-color: #1a1a2e;
    }

    .page-ae-casino__faq-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-ae-casino__faq-item {
      background-color: #2a2a4a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-ae-casino__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: #34495e; /* Darker blue-grey for question */
      color: #ffffff;
      transition: background-color 0.3s ease;
    }

    .page-ae-casino__faq-question:hover {
      background-color: #415a70;
    }

    .page-ae-casino__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from capturing click */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-ae-casino__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from capturing click */
      transition: transform 0.3s ease;
    }

    .page-ae-casino__faq-item.active .page-ae-casino__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-ae-casino__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: #e0e0e0;
    }

    .page-ae-casino__faq-item.active .page-ae-casino__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px !important;
      opacity: 1;
    }

    .page-ae-casino__faq-answer p {
      margin: 0;
      font-size: 1em;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-ae-casino__hero-section {
        height: 50vh;
      }

      .page-ae-casino__hero-title {
        font-size: 2em;
      }

      .page-ae-casino__hero-subtitle {
        font-size: 1em;
      }

      .page-ae-casino__section-title {
        font-size: 1.8em;
      }

      .page-ae-casino__section-description {
        font-size: 0.95em;
      }

      .page-ae-casino__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-ae-casino__cta-button--large {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-ae-casino__product-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
      }

      .page-ae-casino__promo-card {
        flex-direction: column;
      }

      .page-ae-casino__promo-image {
        height: 180px;
      }

      .page-ae-casino__promo-title {
        font-size: 1.5em;
      }

      .page-ae-casino__promo-desc {
        font-size: 0.9em;
      }

      /* Responsive list items for providers and payments */
      .page-ae-casino__provider-list,
      .page-ae-casino__payment-list {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-ae-casino__provider-item,
      .page-ae-casino__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center;
      }

      .page-ae-casino__faq-question {
        padding: 15px;
      }

      .page-ae-casino__faq-question h3 {
        font-size: 1.1em;
      }

      .page-ae-casino__faq-toggle {
        font-size: 1.3em;
      }

      .page-ae-casino__faq-answer {
        padding: 0 15px;
      }

      .page-ae-casino__faq-item.active .page-ae-casino__faq-answer {
        padding: 15px !important;
      }

      .page-ae-casino__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Buttons side-by-side on mobile */
        width: calc(100% - 30px); /* Fill most of the width */
        justify-content: space-around;
      }

      .page-ae-casino__register-btn,
      .page-ae-casino__login-btn {
        flex: 1; /* Distribute space evenly */
        margin: 0 5px;
        padding: 10px 15px;
        font-size: 0.95em;
      }
    }

    @media (max-width: 480px) {
      .page-ae-casino__hero-section {
        height: 40vh;
      }

      .page-ae-casino__hero-title {
        font-size: 1.6em;
      }

      .page-ae-casino__hero-subtitle {
        font-size: 0.9em;
      }

      .page-ae-casino__section-title {
        font-size: 1.6em;
      }

      .page-ae-casino__promo-title {
        font-size: 1.3em;
      }
    }

    /* Ensure images are always responsive */
    .page-ae-casino img {
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    /* Ensure images inside containers are responsive */
    .page-ae-casino__product-item img,
    .page-ae-casino__promo-card img {
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }
  