
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #00008B; /* Dark Blue */
      --accent-color: #FF4500; /* OrangeRed */
      --text-color: #FFFFFF;
      --dark-text-color: #333333;
      --background-dark: #1a1a2e; /* Dark theme background */
      --background-light: #f0f2f5;
      --card-background: #2a2a4a;
      --border-color: #444466;
      --button-hover: #FFA500;
    }

    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: var(--background-dark);
      color: var(--text-color);
      line-height: 1.6;
    }

    .page-58-wim {
      max-width: 100%;
      overflow-x: hidden;
    }

    .page-58-wim__section {
      padding: 40px 15px;
      margin-bottom: 20px;
      background-color: var(--background-dark);
      text-align: center;
    }

    .page-58-wim__section--light {
        background-color: var(--card-background);
    }

    .page-58-wim__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-58-wim__section-subtitle {
        font-size: 1.2em;
        color: var(--text-color);
        margin-bottom: 30px;
    }

    .page-58-wim__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--primary-color);
      color: var(--dark-text-color);
      text-decoration: none;
      border-radius: 30px;
      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(0, 0, 0, 0.3);
    }

    .page-58-wim__button:hover {
      background-color: var(--button-hover);
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-58-wim__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:casino,gaming,abstract]') no-repeat center center/cover;
      padding: 10px 15px 80px 15px; /* Adjust top padding, assuming body has offset */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      text-align: center;
      position: relative;
    }

    .page-58-wim__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: bold;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }

    .page-58-wim__hero-subtitle {
      font-size: 1.5em;
      color: var(--text-color);
      margin-bottom: 30px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-58-wim__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: calc(100% - 30px); /* Adjust for padding */
      max-width: 400px;
      justify-content: center;
    }

    .page-58-wim__floating-button {
      flex: 1;
      padding: 12px 15px;
      background-color: var(--accent-color);
      color: var(--text-color);
      border: none;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      white-space: nowrap;
      text-align: center;
    }

    .page-58-wim__floating-button:hover {
      background-color: #e63900; /* Darker OrangeRed */
    }

    /* Game Categories Section */
    .page-58-wim__categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-58-wim__category-card {
      background-color: var(--card-background);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      border: 1px solid var(--border-color);
    }

    .page-58-wim__category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-58-wim__category-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid var(--primary-color);
    }

    .page-58-wim__category-title {
      font-size: 1.6em;
      color: var(--primary-color);
      margin: 20px 10px 10px 10px;
      font-weight: bold;
    }

    .page-58-wim__category-description {
      font-size: 0.95em;
      color: var(--text-color);
      padding: 0 15px;
    }

    /* Promotions Section */
    .page-58-wim__promotion-list {
      list-style: none;
      padding: 0;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-58-wim__promotion-item {
      background-color: var(--card-background);
      margin-bottom: 20px;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      border: 1px solid var(--border-color);
    }

    .page-58-wim__promotion-item h3 {
      color: var(--primary-color);
      font-size: 1.8em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-58-wim__promotion-item p {
      color: var(--text-color);
      font-size: 1em;
      margin-bottom: 15px;
    }

    .page-58-wim__promotion-image {
        width: 100%;
        max-width: 600px;
        height: auto;
        border-radius: 10px;
        margin-top: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        object-fit: cover;
    }

    /* Why Choose Us Section */
    .page-58-wim__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-58-wim__feature-item {
      background-color: var(--card-background);
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      border: 1px solid var(--border-color);
    }

    .page-58-wim__feature-item h3 {
      color: var(--primary-color);
      font-size: 1.5em;
      margin-top: 15px;
      margin-bottom: 10px;
    }

    .page-58-wim__feature-item p {
      color: var(--text-color);
      font-size: 0.95em;
    }

    .page-58-wim__feature-icon {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    /* FAQ Section */
    .page-58-wim__faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 15px;
      text-align: left;
    }

    .page-58-wim__faq-item {
      background-color: var(--card-background);
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
    }

    .page-58-wim__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: var(--secondary-color);
      color: var(--primary-color);
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
      border-radius: 10px; /* Rounded corners for question part */
    }

    .page-58-wim__faq-question:hover {
      background-color: #0000a0; /* Slightly lighter dark blue */
    }

    .page-58-wim__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      font-size: 1em; /* Adjust to match parent font size */
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-58-wim__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-58-wim__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: var(--text-color);
      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: var(--card-background);
    }

    .page-58-wim__faq-item.active .page-58-wim__faq-answer {
      max-height: 2000px !important;
      padding: 20px !important;
      opacity: 1;
    }

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

    /* Call to Action Section */
    .page-58-wim__cta-section {
        background-color: var(--secondary-color);
        padding: 50px 15px;
        text-align: center;
    }

    .page-58-wim__cta-section .page-58-wim__section-title {
        color: var(--primary-color);
    }

    .page-58-wim__cta-section p {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: var(--text-color);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-58-wim__hero-title {
        font-size: 2.5em;
      }

      .page-58-wim__hero-subtitle {
        font-size: 1.2em;
      }

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

      .page-58-wim__categories-grid,
      .page-58-wim__feature-grid {
        grid-template-columns: 1fr;
      }

      .page-58-wim__promotion-item {
        padding: 20px;
      }

      .page-58-wim__promotion-item h3 {
        font-size: 1.5em;
      }

      .page-58-wim__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }

      .page-58-wim__faq-question h3 {
        font-size: 1em;
      }

      .page-58-wim__faq-answer {
        padding: 0 15px;
      }

      .page-58-wim__faq-item.active .page-58-wim__faq-answer {
        padding: 15px !important;
      }

      /* List item responsive requirements (applied to grid items as well) */
      .page-58-wim__categories-grid > *,
      .page-58-wim__feature-grid > *,
      .page-58-wim__promotion-list > * {
        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-58-wim__categories-grid,
      .page-58-wim__feature-grid,
      .page-58-wim__promotion-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Adjust padding for container */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    @media (max-width: 480px) {
        .page-58-wim__hero-title {
            font-size: 2em;
        }
        .page-58-wim__hero-subtitle {
            font-size: 1em;
        }
        .page-58-wim__section-title {
            font-size: 1.8em;
        }
        .page-58-wim__floating-buttons {
            gap: 10px;
            bottom: 15px;
        }
        .page-58-wim__floating-button {
            font-size: 0.9em;
            padding: 10px 10px;
        }
    }
  