
    .page-betvisa {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 80px; /* Space for the floating button */
    }

    .page-betvisa__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-betvisa__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      text-align: center;
      color: #fff;
      padding-top: 10px; /* For fixed header */
      padding-bottom: 60px;
      background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
      margin-bottom: 30px;
    }

    .page-betvisa__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      display: flex;
      justify-content: center;
      align-items: flex-start; /* Align image to top */
    }

    .page-betvisa__hero-image {
      width: 100%;
      height: auto;
      object-fit: cover;
      opacity: 0.7;
      max-width: 100%; /* Ensure responsiveness */
      filter: brightness(0.7); /* Darken image for text contrast */
    }

    .page-betvisa__hero-content {
      position: relative;
      z-index: 2;
      padding: 40px 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-betvisa__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: bold;
      color: #ffd700; /* Gold color for prominence */
    }

    .page-betvisa__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
      color: #e0e0e0;
    }

    .page-betvisa__cta-button {
      display: inline-block;
      background-color: #ff4500; /* Orange-red for CTA */
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      border: none;
      cursor: pointer;
    }

    .page-betvisa__cta-button:hover {
      background-color: #e03c00;
      transform: translateY(-3px);
    }

    .page-betvisa__floating-promo {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #28a745; /* Green for promo */
      color: #fff;
      padding: 12px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      font-weight: bold;
      font-size: 1em;
      z-index: 1000;
      animation: page-betvisa__pulse 2s infinite;
      text-decoration: none; /* Ensure it looks like a button */
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .page-betvisa__floating-promo:hover {
      background-color: #218838;
      animation: none;
    }

    @keyframes page-betvisa__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .page-betvisa__section {
      background-color: #fff;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-betvisa__section-title {
      font-size: 2em;
      color: #0056b3;
      margin-bottom: 25px;
      text-align: center;
      font-weight: 700;
    }

    .page-betvisa__text-center {
      text-align: center;
    }

    .page-betvisa__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-betvisa__game-card {
      background-color: #f0f8ff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 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;
    }

    .page-betvisa__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-betvisa__game-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-betvisa__game-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
    }

    .page-betvisa__game-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-betvisa__game-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-betvisa__game-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-betvisa__info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-betvisa__info-card {
      background-color: #e6f7ff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
    }

    .page-betvisa__info-icon {
      font-size: 3em;
      color: #007bff;
      margin-bottom: 15px;
    }

    .page-betvisa__info-title {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-betvisa__info-text {
      font-size: 1em;
      color: #444;
    }

    .page-betvisa__faq-section {
      background-color: #fefefe;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-betvisa__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 15px;
    }

    .page-betvisa__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-betvisa__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #333;
      transition: color 0.3s ease;
    }

    .page-betvisa__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      text-align: left;
    }

    .page-betvisa__faq-question:hover {
      color: #007bff;
    }

    .page-betvisa__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-betvisa__faq-item.active .page-betvisa__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - visual */
    }

    .page-betvisa__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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;
      font-size: 0.95em;
      text-align: left;
    }

    .page-betvisa__faq-item.active .page-betvisa__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-betvisa__final-cta {
      text-align: center;
      margin-top: 40px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-betvisa__hero-section {
        padding-top: 10px; /* Adjust for mobile fixed header */
        padding-bottom: 40px;
      }

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

      .page-betvisa__hero-description {
        font-size: 1em;
      }

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

      .page-betvisa__section {
        padding: 30px 15px;
      }

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

      .page-betvisa__game-grid {
        grid-template-columns: 1fr;
      }

      .page-betvisa__game-image-wrapper {
        height: 180px;
      }
      
      .page-betvisa__game-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-betvisa__info-grid {
        grid-template-columns: 1fr;
      }

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

      .page-betvisa__faq-toggle {
        font-size: 1.2em;
      }

      .page-betvisa__faq-answer {
        font-size: 0.9em;
      }

      .page-betvisa__floating-promo {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-betvisa__hero-title {
        font-size: 1.8em;
      }
      .page-betvisa__hero-description {
        font-size: 0.9em;
      }
      .page-betvisa__section-title {
        font-size: 1.5em;
      }
    }
  