
    :root {
      --primary-color: #e44d26; /* A vibrant red/orange for betting */
      --secondary-color: #333;
      --accent-color: #f7b731; /* Gold/yellow for accents */
      --text-light: #fff;
      --text-dark: #333;
      --bg-dark: #1a1a1a;
      --bg-light: #f4f4f4;
      --border-color: #555;
      --shadow-color: rgba(0, 0, 0, 0.2);
    }

    .page-68wwim {
      font-family: 'Arial', sans-serif;
      color: var(--text-dark);
      line-height: 1.6;
      background-color: var(--bg-light);
    }

    /* Fixed navigation bar spacing adjustment */
    .page-68wwim {
      padding-top: 10px; /* Small decorative padding, assuming body already has header offset */
    }
    @media (max-width: 768px) {
      .page-68wwim {
        padding-top: 10px; /* Ensure consistent small padding on mobile */
      }
    }


    .page-68wwim__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px var(--shadow-color);
      text-align: center;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-68wwim__section--dark {
      background-color: var(--bg-dark);
      color: var(--text-light);
    }

    .page-68wwim__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      font-weight: bold;
      text-align: center;
      line-height: 1.2;
    }

    .page-68wwim__section-title--light {
      color: var(--accent-color);
    }

    .page-68wwim__section-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--secondary-color);
    }

    .page-68wwim__section-description--light {
      color: #ccc;
    }

    .page-68wwim__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--primary-color);
      color: var(--text-light);
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-68wwim__button:hover {
      background-color: #f05a31;
      transform: translateY(-2px);
    }

    .page-68wwim__button--secondary {
      background-color: var(--accent-color);
      color: var(--text-dark);
    }

    .page-68wwim__button--secondary:hover {
      background-color: #fcc24d;
    }

    /* Hero Section */
    .page-68wwim__hero {
      position: relative;
      padding: 80px 20px;
      background: linear-gradient(135deg, #2c3e50, #4ca1af); /* Dark blue gradient */
      color: var(--text-light);
      text-align: center;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
      box-sizing: border-box;
      padding-top: 100px; /* Adjusted to account for fixed header and some extra space */
    }

    .page-68wwim__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .page-68wwim__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-68wwim__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-68wwim__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-68wwim__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      margin-top: 40px;
      object-fit: cover;
    }

    /* Floating Buttons */
    .page-68wwim__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-68wwim__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background-color: var(--primary-color);
      color: var(--text-light);
      border-radius: 50%;
      font-size: 0.9em;
      font-weight: bold;
      text-align: center;
      line-height: 1.2;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-68wwim__floating-button:hover {
      background-color: #f05a31;
      transform: scale(1.05);
    }

    /* Game Categories */
    .page-68wwim__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
      box-sizing: border-box;
    }

    .page-68wwim__game-card {
      background-color: #fefefe;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-68wwim__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    }

    .page-68wwim__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      position: relative;
    }

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

    .page-68wwim__game-card:hover .page-68wwim__game-card-image {
      transform: scale(1.05);
    }

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

    .page-68wwim__game-card-title {
      font-size: 1.6em;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-68wwim__game-card-description {
      font-size: 0.95em;
      color: var(--secondary-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Promotions Section */
    .page-68wwim__promo-card {
      display: flex;
      align-items: center;
      background-color: #fefefe;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      margin-top: 40px;
      text-align: left;
      box-sizing: border-box;
    }

    .page-68wwim__promo-card-image {
      width: 40%;
      height: 300px;
      object-fit: cover;
    }

    .page-68wwim__promo-card-content {
      padding: 30px;
      width: 60%;
    }

    .page-68wwim__promo-card-title {
      font-size: 2em;
      color: var(--primary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-68wwim__promo-card-description {
      font-size: 1.1em;
      color: var(--secondary-color);
      margin-bottom: 25px;
    }

    /* Why Choose Us Section */
    .page-68wwim__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
      box-sizing: border-box;
    }

    .page-68wwim__feature-item {
      background-color: #fefefe;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-68wwim__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-68wwim__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
    }

    .page-68wwim__feature-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-68wwim__feature-description {
      font-size: 1em;
      color: var(--secondary-color);
    }

    /* Providers and Payments Grid */
    .page-68wwim__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
      box-sizing: border-box;
    }

    .page-68wwim__logo-item {
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px;
      box-sizing: border-box;
    }

    .page-68wwim__logo-image {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
      height: auto; /* Maintain aspect ratio */
    }

    /* FAQ Section */
    .page-68wwim__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-68wwim__faq-item {
      background-color: #fefefe;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-68wwim__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--bg-light);
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-68wwim__faq-question:hover {
      background-color: #e9e9e9;
    }

    .page-68wwim__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-68wwim__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-68wwim__faq-item.active .page-68wwim__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-68wwim__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--secondary-color);
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-68wwim__hero-title {
        font-size: 3em;
      }
      .page-68wwim__section-title {
        font-size: 2em;
      }
      .page-68wwim__promo-card {
        flex-direction: column;
      }
      .page-68wwim__promo-card-image,
      .page-68wwim__promo-card-content {
        width: 100%;
      }
      .page-68wwim__promo-card-image {
        height: 250px;
      }
    }

    @media (max-width: 768px) {
      .page-68wwim__hero {
        padding: 60px 15px;
        padding-top: 80px; /* Adjusted for mobile header */
      }
      .page-68wwim__hero-title {
        font-size: 2.5em;
      }
      .page-68wwim__hero-subtitle {
        font-size: 1.2em;
      }
      .page-68wwim__section {
        padding: 30px 15px;
        margin-left: 10px;
        margin-right: 10px;
      }
      .page-68wwim__section-title {
        font-size: 1.8em;
      }
      .page-68wwim__section-description {
        font-size: 1em;
      }
      .page-68wwim__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-68wwim__game-grid,
      .page-68wwim__feature-grid,
      .page-68wwim__logo-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
      }

      /* List item mobile responsiveness */
      .page-68wwim__game-card,
      .page-68wwim__feature-item,
      .page-68wwim__logo-item,
      .page-68wwim__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding to fit screen */
        padding-right: 15px !important; /* Adjust padding to fit screen */
      }
      .page-68wwim__game-card-title,
      .page-68wwim__feature-title,
      .page-68wwim__faq-question h3 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        font-size: 1.1em;
      }
      .page-68wwim__game-card-description,
      .page-68wwim__feature-description,
      .page-68wwim__promo-card-description,
      .page-68wwim__faq-answer {
        font-size: 0.9em;
      }

      .page-68wwim__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        justify-content: space-around;
        bottom: 15px;
      }
      .page-68wwim__floating-button {
        width: 50px;
        height: 50px;
      }
      .page-68wwim__promo-card-image {
        height: 200px;
      }
      .page-68wwim__promo-card-content {
        padding: 20px;
      }
      .page-68wwim__promo-card-title {
        font-size: 1.5em;
      }
      .page-68wwim__faq-question, .page-68wwim__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
      }
      .page-68wwim__faq-item.active .page-68wwim__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-68wwim__hero-title {
        font-size: 2em;
      }
      .page-68wwim__hero-subtitle {
        font-size: 1em;
      }
      .page-68wwim__section-title {
        font-size: 1.5em;
      }
      .page-68wwim__floating-button {
        width: 45px;
        height: 45px;
        font-size: 0.8em;
      }
    }
  