
    .page-winbet-11 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f0f2f5;
      padding-top: 10px; /* Small decorative top padding, assuming body has header offset */
    }

    /* Floating Buttons */
    .page-winbet-11__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-winbet-11__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      color: #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease, background-color 0.2s ease;
      min-width: 120px;
      text-align: center;
    }

    .page-winbet-11__floating-button--register {
      background-color: #ff4d4d; /* Red */
    }

    .page-winbet-11__floating-button--login {
      background-color: #5cb85c; /* Green */
    }

    .page-winbet-11__floating-button:hover {
      transform: translateY(-2px);
      opacity: 0.9;
    }

    /* Hero Section */
    .page-winbet-11__hero-section {
      background: linear-gradient(135deg, #ff6b6b 0%, #ff4d4d 100%);
      color: #fff;
      text-align: center;
      padding: 40px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      margin: 0 15px 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .page-winbet-11__hero-content {
      max-width: 800px;
      z-index: 2;
    }

    .page-winbet-11__main-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-winbet-11__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-winbet-11__hero-cta {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-winbet-11__cta-button {
      display: inline-block;
      background-color: #ffd700; /* Gold */
      color: #333;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-winbet-11__cta-button:hover {
      background-color: #ffeb3b;
      transform: translateY(-2px);
    }

    .page-winbet-11__cta-button--secondary {
      background-color: rgba(255, 255, 255, 0.2);
      color: #fff;
      border: 2px solid #fff;
    }

    .page-winbet-11__cta-button--secondary:hover {
      background-color: rgba(255, 255, 255, 0.3);
      color: #fff;
    }

    .page-winbet-11__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      opacity: 0.3;
      z-index: 1;
    }

    .page-winbet-11__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }

    /* General Section Styling */
    .page-winbet-11__section-title {
      text-align: center;
      font-size: 2em;
      color: #333;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

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

    section {
      padding: 60px 20px;
      margin-bottom: 30px;
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      margin: 0 15px 30px; /* Consistent margin for sections */
    }

    /* Features Section */
    .page-winbet-11__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-winbet-11__feature-item {
      text-align: center;
      padding: 25px;
      background-color: #f9f9f9;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-winbet-11__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .page-winbet-11__feature-icon {
      width: 100%; /* Ensure image fills container */
      max-width: 200px; /* Max width for consistency */
      height: auto;
      object-fit: contain;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-winbet-11__feature-title {
      font-size: 1.4em;
      color: #ff4d4d;
      margin-bottom: 10px;
    }

    .page-winbet-11__feature-description {
      font-size: 0.95em;
      color: #555;
    }

    /* Games Showcase Section */
    .page-winbet-11__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-winbet-11__game-card {
      background-color: #f9f9f9;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      box-sizing: border-box;
    }

    .page-winbet-11__game-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .page-winbet-11__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .page-winbet-11__game-title {
      font-size: 1.3em;
      color: #ff4d4d;
      margin: 15px 10px 5px;
    }

    .page-winbet-11__game-description {
      font-size: 0.9em;
      color: #666;
      padding: 0 15px 20px;
    }

    /* Providers Section */
    .page-winbet-11__providers-grid,
    .page-winbet-11__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .page-winbet-11__provider-item,
    .page-winbet-11__payment-item {
      background-color: #f0f0f0;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-sizing: border-box;
    }

    .page-winbet-11__provider-item:hover,
    .page-winbet-11__payment-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .page-winbet-11__provider-item a,
    .page-winbet-11__payment-item a {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .page-winbet-11__provider-logo,
    .page-winbet-11__payment-logo {
      width: 100%;
      max-width: 120px;
      height: auto;
      object-fit: contain;
      margin-bottom: 10px;
      filter: grayscale(80%); /* Example: make logos more subtle */
      transition: filter 0.3s ease;
    }

    .page-winbet-11__provider-item:hover .page-winbet-11__provider-logo,
    .page-winbet-11__payment-item:hover .page-winbet-11__payment-logo {
      filter: grayscale(0%); /* Full color on hover */
    }

    .page-winbet-11__provider-name,
    .page-winbet-11__payment-name {
      font-size: 0.9em;
      font-weight: bold;
      color: #555;
    }

    /* FAQ Section */
    .page-winbet-11__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-winbet-11__faq-item {
      background-color: #f9f9f9;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-winbet-11__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #ff4d4d;
      color: #fff;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
    }

    .page-winbet-11__faq-question:hover {
      background-color: #e63939;
    }

    .page-winbet-11__faq-title {
      font-size: 1.1em;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-winbet-11__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click on parent div */
    }

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

    .page-winbet-11__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding 0 */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #333;
      background-color: #fff;
    }

    .page-winbet-11__faq-item.active .page-winbet-11__faq-answer {
      max-height: 2000px !important; /* Sufficiently large for content */
      padding: 20px 20px !important; /* Expanded padding */
      opacity: 1;
    }

    .page-winbet-11__faq-answer p {
      margin: 0;
      padding-bottom: 10px; /* Add some bottom padding to paragraph inside answer */
    }

    /* Final CTA Section */
    .page-winbet-11__cta-final-section {
      text-align: center;
      background: linear-gradient(135deg, #5cb85c 0%, #4cae4c 100%);
      color: #fff;
      padding: 60px 20px;
      border-radius: 15px;
      margin: 0 15px 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .page-winbet-11__cta-final-section .page-winbet-11__section-title {
      color: #fff;
    }

    .page-winbet-11__cta-final-section .page-winbet-11__section-title::after {
      background-color: #ffd700;
    }

    .page-winbet-11__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-winbet-11__cta-button--large {
      padding: 15px 35px;
      font-size: 1.2em;
      background-color: #ffd700;
      color: #333;
    }

    .page-winbet-11__cta-button--large:hover {
      background-color: #ffeb3b;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-winbet-11__main-title {
        font-size: 1.8em;
      }

      .page-winbet-11__hero-description {
        font-size: 1em;
      }

      .page-winbet-11__hero-cta {
        flex-direction: column;
        gap: 10px;
      }

      .page-winbet-11__cta-button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }

      .page-winbet-11__section-title {
        font-size: 1.6em;
      }

      section {
        padding: 40px 15px;
        margin: 0 10px 20px;
      }

      /* List items responsive */
      .page-winbet-11__features-grid,
      .page-winbet-11__games-grid,
      .page-winbet-11__providers-grid,
      .page-winbet-11__payment-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
      }

      .page-winbet-11__feature-item,
      .page-winbet-11__game-card,
      .page-winbet-11__provider-item,
      .page-winbet-11__payment-item,
      .page-winbet-11__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;
        padding-right: 15px !important;
      }

      .page-winbet-11__faq-question {
        padding: 12px 15px;
      }

      .page-winbet-11__faq-answer {
        padding: 0 15px;
      }

      .page-winbet-11__faq-item.active .page-winbet-11__faq-answer {
        padding: 15px 15px !important;
      }

      .page-winbet-11__feature-description,
      .page-winbet-11__game-description,
      .page-winbet-11__provider-name,
      .page-winbet-11__payment-name,
      .page-winbet-11__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-winbet-11__main-title {
        font-size: 1.5em;
      }
      .page-winbet-11__section-title {
        font-size: 1.4em;
      }
      .page-winbet-11__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }
      .page-winbet-11__floating-button {
        padding: 10px 15px;
        min-width: 100px;
        font-size: 0.9em;
      }
    }
  