
    /* Base styles for the page-casino scope */
    .page-casino {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Black background */
      color: #FFFFFF; /* White text */
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-casino__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-casino__section-title {
      color: #FFD700; /* Yellow for titles */
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
      padding-top: 20px;
    }

    .page-casino__section-subtitle {
      color: #FFFFFF;
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.2em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-casino__hero-section {
      position: relative;
      width: 100%;
      text-align: center;
      padding-top: 160px; /* Space for fixed header */
      padding-bottom: 50px;
      background-color: #1a1a1a; /* Darker grey for hero background */
      box-sizing: border-box;
    }

    .page-casino__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-casino__hero-content {
      padding: 20px 20px 0;
      position: relative;
      z-index: 1;
    }

    .page-casino__logo {
      max-width: 250px;
      height: auto;
      margin-bottom: 20px;
    }

    .page-casino__title {
      font-size: 3em;
      color: #FFD700; /* Yellow */
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-casino__description {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-casino__cta-button {
      display: inline-block;
      background-color: #FFD700; /* Yellow */
      color: #000000; /* Black text */
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

    .page-casino__cta-button:hover {
      background-color: #e6c200; /* Darker yellow */
      transform: translateY(-2px);
    }

    /* Sticky Promo Button */
    .page-casino__sticky-promo-button {
      position: sticky;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
      width: fit-content;
      margin: 20px auto;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
      }
      70% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
      }
      100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
      }
    }

    /* Game Categories */
    .page-casino__game-categories {
      padding: 40px 20px;
    }

    .page-casino__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0;
    }

    .page-casino__category-card {
      background-color: #1a1a1a; /* Dark grey */
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #333333;
      box-sizing: border-box;
    }

    .page-casino__category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(255, 215, 0, 0.3);
    }

    .page-casino__card-image {
      width: 100%;
      max-width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 2px solid #FFD700; /* Yellow border */
      box-sizing: border-box;
    }

    .page-casino__card-content {
      padding: 25px 20px;
    }

    .page-casino__card-title {
      color: #FFD700;
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-casino__card-description {
      color: #CCCCCC;
      font-size: 0.95em;
    }

    /* About Section */
    .page-casino__about-section {
      padding: 60px 20px;
      background-color: #000000;
      text-align: center;
      box-sizing: border-box;
    }

    .page-casino__about-section .page-casino__section-text {
      max-width: 900px;
      margin: 0 auto;
      color: #FFFFFF;
      font-size: 1.1em;
    }

    /* Game Providers */
    .page-casino__game-providers {
      padding: 60px 20px;
      background-color: #1a1a1a;
      box-sizing: border-box;
    }

    .page-casino__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 30px;
      justify-items: center;
      align-items: center;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-casino__provider-logo {
      width: 100%;
      max-width: 180px; /* Max width for logos */
      height: auto;
      object-fit: contain;
      filter: grayscale(100%); /* Make logos grayscale initially */
      transition: filter 0.3s ease;
      box-sizing: border-box;
    }

    .page-casino__provider-logo:hover {
      filter: grayscale(0%); /* Color on hover */
    }

    /* Why Choose Section */
    .page-casino__why-choose {
      padding: 60px 20px;
      background-color: #000000;
      box-sizing: border-box;
    }

    .page-casino__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-casino__feature-item {
      background-color: #1a1a1a;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      border: 1px solid #333333;
      box-sizing: border-box;
    }

    .page-casino__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      object-fit: contain;
      box-sizing: border-box;
    }

    .page-casino__feature-title {
      color: #FFD700;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-casino__feature-text {
      color: #CCCCCC;
      font-size: 1em;
    }

    /* Guide Section */
    .page-casino__guide-section {
      padding: 60px 20px;
      background-color: #1a1a1a;
      box-sizing: border-box;
    }

    .page-casino__guide-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-casino__guide-step {
      background-color: #000000;
      border-radius: 15px;
      padding: 30px;
      max-width: 350px;
      text-align: center;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      border: 1px solid #333333;
      box-sizing: border-box;
    }

    .page-casino__step-number {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      width: 40px;
      height: 40px;
      line-height: 40px;
      border-radius: 50%;
      font-size: 1.5em;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .page-casino__step-title {
      color: #FFD700;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-casino__step-description {
      color: #CCCCCC;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-casino__faq-section {
      padding: 60px 20px;
      background-color: #000000;
      box-sizing: border-box;
    }

    .page-casino__faq-list {
      max-width: 900px;
      margin: 40px auto 0 auto;
    }

    .page-casino__faq-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: 1px solid #333333;
      box-sizing: border-box;
    }

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

    .page-casino__faq-question:hover {
      background-color: #2a2a2a;
    }

    .page-casino__faq-title {
      color: #FFD700;
      font-size: 1.2em;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-casino__faq-toggle {
      font-size: 1.8em;
      color: #FFD700;
      font-weight: bold;
      pointer-events: none; /* Prevent span from blocking click */
      transition: transform 0.3s ease;
    }

    .page-casino__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      color: #CCCCCC;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      font-size: 1em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-casino__hero-section {
        padding-top: 160px; /* Ensure space for fixed header on mobile */
      }

      .page-casino__hero-image {
        max-width: 100%;
        height: auto;
      }

      .page-casino__logo {
        max-width: 200px;
      }

      .page-casino__title {
        font-size: 2.2em;
      }

      .page-casino__description {
        font-size: 1em;
      }

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

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

      .page-casino__game-grid {
        grid-template-columns: 1fr;
        padding: 0;
      }

      .page-casino__category-card {
        margin: 0 auto;
      }

      .page-casino__card-image {
        height: 180px;
      }

      .page-casino__about-section,
      .page-casino__game-providers,
      .page-casino__why-choose,
      .page-casino__guide-section,
      .page-casino__faq-section {
        padding: 40px 15px;
      }

      .page-casino__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
      }

      .page-casino__feature-grid {
        grid-template-columns: 1fr;
      }

      .page-casino__guide-steps {
        flex-direction: column;
        align-items: center;
      }

      .page-casino__guide-step {
        max-width: 100%;
      }

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

      .page-casino__faq-title {
        font-size: 1.1em;
      }

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

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

      /* Image responsive optimization for mobile */
      .page-casino img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-casino .page-casino__card-image,
      .page-casino .page-casino__feature-icon,
      .page-casino .page-casino__provider-logo,
      .page-casino .page-casino__hero-image,
      .page-casino .page-casino__logo {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-casino .page-casino__card-image,
      .page-casino .page-casino__hero-image {
        object-fit: cover !important;
      }
      .page-casino .page-casino__provider-logo,
      .page-casino .page-casino__feature-icon,
      .page-casino .page-casino__logo {
        object-fit: contain !important;
      }
    }
  