
    .page-day-casino {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 20px;
    }

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

    .page-day-casino__hero-section {
      position: relative;
      text-align: center;
      color: #fff;
      padding: 10px 0 60px;
      overflow: hidden;
      background-color: #000;
    }

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

    .page-day-casino__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }

    .page-day-casino__hero-content h1 {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #ffcc00;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-day-casino__hero-content p {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-day-casino__button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-day-casino__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-day-casino__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-day-casino__section:nth-of-type(even) {
      background-color: #222;
    }

    .page-day-casino__section h2 {
      font-size: 2.5em;
      color: #ffcc00;
      margin-bottom: 40px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-day-casino__section h3 {
      font-size: 1.8em;
      color: #fff;
      margin-bottom: 20px;
    }

    .page-day-casino__section p {
      font-size: 1.1em;
      color: #ccc;
      margin-bottom: 20px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-day-casino__image-wrapper {
      max-width: 100%;
      overflow: hidden;
      margin: 40px auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

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

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

    .page-day-casino__game-card {
      background-color: #333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-day-casino__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-day-casino__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-day-casino__game-card-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-day-casino__game-card-content h3 {
      color: #ffcc00;
      font-size: 1.5em;
      margin-bottom: 15px;
    }

    .page-day-casino__game-card-content p {
      color: #ccc;
      font-size: 0.95em;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-day-casino__promotion-item {
      background-color: #333;
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-day-casino__promotion-item h3 {
      color: #ffcc00;
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-day-casino__promotion-item p {
      color: #ccc;
      font-size: 1.1em;
    }

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

    .page-day-casino__faq-item {
      background-color: #333;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
    }

    .page-day-casino__faq-item:hover {
      background-color: #444;
    }

    .page-day-casino__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: #444;
      color: #ffcc00;
      font-size: 1.2em;
      font-weight: bold;
      border-bottom: 1px solid #555;
    }

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

    .page-day-casino__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
    }

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

    .page-day-casino__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #ccc;
      font-size: 1.05em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      background-color: #3a3a3a;
    }

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

    .page-day-casino__cta-section {
      background-color: #000;
      padding: 80px 0;
      text-align: center;
    }

    .page-day-casino__cta-section h2 {
      color: #ffcc00;
      font-size: 2.8em;
      margin-bottom: 30px;
    }

    .page-day-casino__cta-section p {
      color: #e0e0e0;
      font-size: 1.2em;
      margin-bottom: 40px;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-day-casino__hero-content h1 {
        font-size: 2.5em;
      }

      .page-day-casino__hero-content p {
        font-size: 1.1em;
      }

      .page-day-casino__section h2 {
        font-size: 2.2em;
      }

      .page-day-casino__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-day-casino__hero-section {
        padding-bottom: 40px;
      }

      .page-day-casino__hero-content {
        padding: 30px 15px;
      }

      .page-day-casino__hero-content h1 {
        font-size: 2em;
      }

      .page-day-casino__hero-content p {
        font-size: 1em;
      }

      .page-day-casino__section {
        padding: 40px 0;
      }

      .page-day-casino__section h2 {
        font-size: 1.8em;
      }

      .page-day-casino__section p {
        font-size: 0.95em;
      }

      .page-day-casino__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-day-casino__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important; /* Adjust if needed based on parent container */
      }

      .page-day-casino__game-card-content h3 {
        font-size: 1.3em;
      }

      .page-day-casino__game-card-content p {
        font-size: 0.9em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-day-casino__image-wrapper {
        margin: 20px auto;
      }

      .page-day-casino__image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-day-casino__faq-question h3 {
        font-size: 1em;
      }

      .page-day-casino__faq-answer {
        font-size: 0.9em;
        padding: 0 15px;
      }

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

      .page-day-casino__cta-section {
        padding: 60px 0;
      }

      .page-day-casino__cta-section h2 {
        font-size: 2em;
      }

      .page-day-casino__cta-section p {
        font-size: 1em;
      }

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

    @media (max-width: 480px) {
      .page-day-casino__hero-content h1 {
        font-size: 1.8em;
      }

      .page-day-casino__hero-content p {
        font-size: 0.9em;
      }

      .page-day-casino__section h2 {
        font-size: 1.6em;
      }

      .page-day-casino__faq-question h3 {
        font-size: 0.95em;
      }

      .page-day-casino__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-day-casino__cta-section h2 {
        font-size: 1.8em;
      }
    }
  