
    .page-181-bet {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-bottom: 80px;
      /* relying on body { padding-top: var(--header-offset); } from shared.css */
    }

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

    .page-181-bet__brand-header {
      text-align: center;
      padding: 10px 0 20px;
      background-color: #1a1a2e;
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid #333;
      margin-top: 10px; /* Small top padding for visual separation from header */
    }

    .page-181-bet__brand-title {
      font-size: 2.2em;
      color: #e6b300;
      margin: 0;
      text-shadow: 0 0 8px rgba(230, 179, 0, 0.6);
      padding: 10px 0;
    }

    .page-181-bet__floating-buttons {
      position: fixed;
      right: 15px;
      bottom: 100px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-181-bet__button {
      display: block;
      width: 100px;
      padding: 12px 0;
      text-align: center;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-181-bet__button--register {
      background-color: #e6b300;
      color: #1a1a2e;
    }

    .page-181-bet__button--register:hover {
      background-color: #ffda47;
      transform: translateY(-2px);
    }

    .page-181-bet__button--login {
      background-color: #3366ff;
      color: #ffffff;
    }

    .page-181-bet__button--login:hover {
      background-color: #6699ff;
      transform: translateY(-2px);
    }

    .page-181-bet__hero-section {
      position: relative;
      text-align: center;
      padding: 60px 20px;
      color: #ffffff;
      overflow: hidden;
      background-color: #0d0d1a;
      border-radius: 8px;
      margin-bottom: 30px;
    }

    .page-181-bet__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 1;
    }

    .page-181-bet__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-181-bet__hero-content h2 {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #e6b300;
      text-shadow: 0 0 10px rgba(230, 179, 0, 0.8);
    }

    .page-181-bet__hero-content p {
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    .page-181-bet__cta-button {
      display: inline-block;
      background-color: #e6b300;
      color: #1a1a2e;
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-181-bet__cta-button:hover {
      background-color: #ffda47;
      transform: translateY(-3px);
    }

    .page-181-bet__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: #242442;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    }

    .page-181-bet__section-title {
      font-size: 2.5em;
      color: #e6b300;
      text-align: center;
      margin-bottom: 40px;
      text-shadow: 0 0 5px rgba(230, 179, 0, 0.4);
    }

    .page-181-bet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-181-bet__game-item {
      background-color: #1a1a2e;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-181-bet__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-181-bet__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 2px solid #e6b300;
    }

    .page-181-bet__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-181-bet__game-title {
      font-size: 1.5em;
      color: #ffffff;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-181-bet__game-description {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

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

    .page-181-bet__promo-card {
      background-color: #1a1a2e;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-181-bet__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-181-bet__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-bottom: 2px solid #3366ff;
    }

    .page-181-bet__promo-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-181-bet__promo-title {
      font-size: 1.4em;
      color: #ffffff;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-181-bet__promo-description {
      font-size: 0.9em;
      color: #cccccc;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

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

    .page-181-bet__info-item {
      background-color: #1a1a2e;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-sizing: border-box;
    }

    .page-181-bet__info-item h4 {
      color: #e6b300;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-181-bet__info-item p {
      color: #cccccc;
      font-size: 0.95em;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-181-bet__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
      align-items: center;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-181-bet__logo-item {
      background-color: #1a1a2e;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-181-bet__logo-text {
      color: #ffffff;
      font-weight: bold;
      font-size: 1.1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-181-bet__faq-section {
      padding: 40px 0;
      background-color: #242442;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    }

    .page-181-bet__faq-item {
      background-color: #1a1a2e;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-181-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #2c2c54;
      color: #ffffff;
      font-size: 1.2em;
      font-weight: bold;
      border-bottom: 1px solid #3c3c64;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-181-bet__faq-question:hover {
      background-color: #3a3a6a;
    }

    .page-181-bet__faq-question h3 {
      margin: 0;
      color: #e6b300;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-181-bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
      transition: transform 0.3s ease;
    }

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

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

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

    .page-181-bet__faq-answer p {
      margin: 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-181-bet__cta-bottom {
      text-align: center;
      padding: 50px 20px;
      background-color: #0d0d1a;
      border-radius: 8px;
      margin-top: 30px;
    }

    .page-181-bet__cta-bottom p {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #ffffff;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-181-bet__brand-title {
        font-size: 1.8em;
      }

      .page-181-bet__hero-content h2 {
        font-size: 2em;
      }

      .page-181-bet__hero-content p {
        font-size: 1em;
      }

      .page-181-bet__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      .page-181-bet__game-grid,
      .page-181-bet__promo-grid,
      .page-181-bet__info-list,
      .page-181-bet__logo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-181-bet__game-item,
      .page-181-bet__promo-card,
      .page-181-bet__info-item,
      .page-181-bet__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
      }

      .page-181-bet__game-image,
      .page-181-bet__promo-image {
        height: 180px;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-181-bet__game-description,
      .page-181-bet__promo-description,
      .page-181-bet__info-item p,
      .page-181-bet__logo-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

      .page-181-bet__faq-question h3 {
        font-size: 1.1em;
      }

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

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

      .page-181-bet__floating-buttons {
        bottom: 80px;
        right: 10px;
        gap: 8px;
      }

      .page-181-bet__button {
        width: 90px;
        padding: 10px 0;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-181-bet__brand-title {
        font-size: 1.6em;
      }

      .page-181-bet__hero-content h2 {
        font-size: 1.8em;
      }

      .page-181-bet__hero-content p {
        font-size: 0.9em;
      }

      .page-181-bet__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

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

      .page-181-bet__game-image,
      .page-181-bet__promo-image {
        height: 160px;
      }

      .page-181-bet__game-title {
        font-size: 1.3em;
      }

      .page-181-bet__promo-title {
        font-size: 1.2em;
      }

      .page-181-bet__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-181-bet__faq-question h3 {
        font-size: 1em;
      }

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

      .page-181-bet__floating-buttons {
        bottom: 70px;
        right: 5px;
        gap: 6px;
      }

      .page-181-bet__button {
        width: 80px;
        padding: 8px 0;
        font-size: 0.8em;
      }
    }
  