.page-1win-bestind {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 20px;
      padding-top: var(--header-offset, 122px); /* Fallback for if body padding-top is not set by shared.css */
    }
    .page-1win-bestind__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    .page-1win-bestind__hero-section {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      text-align: center;
      padding: 60px 0;
      padding-top: calc(10px + var(--header-offset, 0px)); /* Small decorative padding, assuming body already handles main offset */
      position: relative;
      overflow: hidden;
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
    }
    .page-1win-bestind__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('[GALLERY:pattern:1920x1080:abstract,gaming,background]');
      background-size: cover;
      background-position: center;
      opacity: 0.1;
      z-index: 0;
    }
    .page-1win-bestind__hero-content {
      position: relative;
      z-index: 1;
    }
    .page-1win-bestind__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    .page-1win-bestind__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .page-1win-bestind__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .page-1win-bestind__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    .page-1win-bestind__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }
    .page-1win-bestind__section {
      padding: 40px 0;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .page-1win-bestind__section--dark {
      background-color: #e9ecef;
    }
    .page-1win-bestind__section-title {
      font-size: 2em;
      color: #007bff;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }
    .page-1win-bestind__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }
    .page-1win-bestind__card {
      background-color: #fefefe;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .page-1win-bestind__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
    .page-1win-bestind__card-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      border-radius: 5px;
    }
    .page-1win-bestind__card-title {
      font-size: 1.3em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: bold;
    }
    .page-1win-bestind__card-description {
      font-size: 0.95em;
      color: #555;
    }
    .page-1win-bestind__image-full-width {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .page-1win-bestind__providers-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }
    .page-1win-bestind__provider-logo {
      height: 60px;
      width: auto;
      max-width: 180px;
      object-fit: contain;
      filter: grayscale(80%);
      transition: filter 0.3s ease;
    }
    .page-1win-bestind__provider-logo:hover {
      filter: grayscale(0%);
    }
    .page-1win-bestind__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);
    }
    .page-1win-bestind__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      font-size: 1.1em;
      font-weight: bold;
      color: #007bff;
      cursor: pointer;
      user-select: none;
      background-color: #eaf6ff;
      border-bottom: 1px solid #d0e9ff;
    }
    .page-1win-bestind__faq-question:hover {
      background-color: #d0e9ff;
    }
    .page-1win-bestind__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevents text from blocking click event */
    }
    .page-1win-bestind__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      width: 24px;
      height: 24px;
      display: flex;
      justify-content: center;
      align-items: center;
      pointer-events: none; /* Prevents icon from blocking click event */
      transition: transform 0.3s ease;
    }
    .page-1win-bestind__faq-item.active .page-1win-bestind__faq-toggle {
      transform: rotate(45deg);
    }
    .page-1win-bestind__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      background-color: #fcfdff;
    }
    .page-1win-bestind__faq-item.active .page-1win-bestind__faq-answer {
      max-height: 2000px !important;
      padding: 20px !important;
      opacity: 1;
    }
    .page-1win-bestind__promo-banner {
      background: url('[GALLERY:banner:1200x400:promo,bonus,casino]') no-repeat center center/cover;
      color: #fff;
      text-align: center;
      padding: 50px 20px;
      border-radius: 10px;
      margin-top: 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.15);
      position: relative;
      overflow: hidden;
    }
    .page-1win-bestind__promo-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.4);
      z-index: 0;
    }
    .page-1win-bestind__promo-content {
      position: relative;
      z-index: 1;
    }
    .page-1win-bestind__promo-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    }
    .page-1win-bestind__promo-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Buttons */
    .page-1win-bestind__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }
    .page-1win-bestind__floating-button {
      background-color: #ffc107;
      color: #333;
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      min-width: 100px;
    }
    .page-1win-bestind__floating-button:hover {
      background-color: #e0a800;
      transform: scale(1.05);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-1win-bestind__hero-title {
        font-size: 2em;
      }
      .page-1win-bestind__hero-description {
        font-size: 1em;
      }
      .page-1win-bestind__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-1win-bestind__cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
      }
      .page-1win-bestind__section-title {
        font-size: 1.7em;
      }
      .page-1win-bestind__grid {
        grid-template-columns: 1fr;
      }
      .page-1win-bestind__card {
        padding: 20px;
      }
      .page-1win-bestind__card-icon {
        width: 70px;
        height: 70px;
      }
      .page-1win-bestind__promo-title {
        font-size: 2em;
      }
      .page-1win-bestind__promo-description {
        font-size: 1em;
      }
      .page-1win-bestind__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      .page-1win-bestind__faq-answer {
        padding: 15px !important;
      }
      .page-1win-bestind__floating-buttons {
        right: 10px;
        bottom: 10px;
      }
      .page-1win-bestind__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: 80px;
      }
      .page-1win-bestind__providers-list {
        gap: 15px;
      }
      .page-1win-bestind__provider-logo {
        height: 50px;
        max-width: 150px;
      }
    }
    @media (max-width: 480px) {
      .page-1win-bestind__hero-section {
        padding: 40px 0;
      }
      .page-1win-bestind__hero-title {
        font-size: 1.8em;
      }
      .page-1win-bestind__hero-description {
        font-size: 0.9em;
      }
      .page-1win-bestind__cta-button {
        font-size: 1em;
        padding: 12px 25px;
      }
      .page-1win-bestind__section-title {
        font-size: 1.5em;
      }
      .page-1win-bestind__faq-question {
        font-size: 0.95em;
      }
    }