
    .page-18-bet {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback if body padding is not set by shared.css */
    }

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

    .page-18-bet__hero-section {
      text-align: center;
      padding: 50px 0 30px;
      background: linear-gradient(135deg, #2a2a2a, #000000);
      position: relative;
      overflow: hidden;
      border-bottom: 5px solid #ffcc00;
      padding-top: 10px; /* Small top padding for visual separation from header */
    }

    .page-18-bet__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 20px auto;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
    }

    .page-18-bet__hero-title {
      font-size: 2.8em;
      color: #ffcc00;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-18-bet__hero-subtitle {
      font-size: 1.3em;
      color: #e0e0e0;
      max-width: 800px;
      margin: 0 auto 30px;
    }

    .page-18-bet__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-18-bet__button {
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
    }

    .page-18-bet__button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    .page-18-bet__section {
      padding: 60px 0;
      background-color: #1a1a1a;
    }

    .page-18-bet__section:nth-of-type(even) {
      background-color: #222222;
    }

    .page-18-bet__section-title {
      font-size: 2.2em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-18-bet__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

    .page-18-bet__text-content p {
      margin-bottom: 20px;
      font-size: 1.05em;
      color: #cccccc;
      text-align: justify;
    }

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

    .page-18-bet__game-card {
      background-color: #2e2e2e;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      border: 1px solid #444;
    }

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

    .page-18-bet__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-18-bet__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-18-bet__game-card:hover .page-18-bet__game-card-image {
      transform: scale(1.05);
    }

    .page-18-bet__game-card-content {
      padding: 20px;
    }

    .page-18-bet__game-card-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-18-bet__game-card-description {
      font-size: 0.95em;
      color: #b0b0b0;
    }

    .page-18-bet__promo-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-18-bet__promo-item {
      background-color: #2e2e2e;
      padding: 25px;
      border-radius: 10px;
      border-left: 5px solid #ffcc00;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-18-bet__promo-item:hover {
      background-color: #3a3a3a;
    }

    .page-18-bet__promo-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-18-bet__promo-description {
      color: #cccccc;
      font-size: 1em;
    }

    .page-18-bet__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 30px;
      justify-items: center;
      align-items: center;
      margin-top: 40px;
    }

    .page-18-bet__logo-item {
      background-color: #2e2e2e;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      width: 100%;
      max-width: 200px;
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-18-bet__logo-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(255, 204, 0, 0.3);
    }

    .page-18-bet__logo-image {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      display: block;
    }

    .page-18-bet__link-text {
      color: #ffcc00;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-18-bet__link-text:hover {
      color: #e6b800;
    }

    .page-18-bet__news-card {
      background-color: #2e2e2e;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid #444;
    }

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

    .page-18-bet__news-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 220px; /* Consistent height for news images */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-18-bet__news-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-18-bet__news-card:hover .page-18-bet__news-image {
      transform: scale(1.05);
    }

    .page-18-bet__news-content {
      padding: 20px;
    }

    .page-18-bet__news-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-18-bet__news-date {
      font-size: 0.9em;
      color: #888;
      margin-bottom: 15px;
    }

    .page-18-bet__news-excerpt {
      font-size: 1em;
      color: #b0b0b0;
    }

    .page-18-bet__faq-section {
      padding: 60px 0;
      background-color: #222222;
    }

    .page-18-bet__faq-item {
      background-color: #2e2e2e;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      border: 1px solid #444;
    }

    .page-18-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      color: #ffcc00;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-18-bet__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-18-bet__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to fit parent font size */
      color: #ffcc00;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-18-bet__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffcc00;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

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

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

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

    .page-18-bet__faq-answer p {
      margin: 0;
    }

    .page-18-bet__final-cta {
      text-align: center;
      padding: 60px 0;
      background-color: #1a1a1a;
    }

    .page-18-bet__final-cta-title {
      font-size: 2.2em;
      color: #ffcc00;
      margin-bottom: 25px;
    }

    .page-18-bet__final-cta-description {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-18-bet__promo-link {
      color: #ffcc00;
      text-decoration: underline;
      font-weight: bold;
      margin-top: 20px;
      display: inline-block;
    }

    .page-18-bet__promo-link:hover {
      color: #e6b800;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-18-bet__container {
        padding: 0 10px;
      }

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

      .page-18-bet__hero-subtitle {
        font-size: 1.1em;
      }

      .page-18-bet__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-18-bet__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-18-bet__section-title {
        font-size: 1.8em;
      }

      .page-18-bet__game-grid, .page-18-bet__promo-list, .page-18-bet__logo-grid {
        grid-template-columns: 1fr;
      }

      .page-18-bet__promo-item, .page-18-bet__logo-item, .page-18-bet__news-card, .page-18-bet__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-18-bet__promo-item {
        padding: 20px;
      }

      .page-18-bet__logo-item {
        max-width: none;
        height: 80px;
      }

      .page-18-bet__news-image-wrapper, .page-18-bet__game-card-image-wrapper {
        height: 180px;
      }

      .page-18-bet__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

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

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

      .page-18-bet__final-cta-title {
        font-size: 1.8em;
      }

      .page-18-bet__final-cta-description {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-18-bet__hero-title {
        font-size: 1.7em;
      }

      .page-18-bet__section-title {
        font-size: 1.6em;
      }

      .page-18-bet__hero-section {
        padding-top: 5px;
      }
    }
  