
    .page-vvv-bet {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a1a;
      color: #e0e0e0;
      line-height: 1.6;
      padding-top: var(--header-offset, 0);
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-vvv-bet {
        padding-top: var(--header-offset, 0);
      }
    }

    .page-vvv-bet__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-vvv-bet__section--dark {
      background-color: #222222;
    }

    .page-vvv-bet__header-brand {
      text-align: center;
      padding: 15px 0;
      background-color: #000;
      color: #ffcc00;
      font-size: 2.2em;
      font-weight: bold;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 2px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-vvv-bet__hero-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #000;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Adjust based on body padding-top from shared.css */
    }

    .page-vvv-bet__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4));
      z-index: 1;
    }

    .page-vvv-bet__hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
    }

    .page-vvv-bet__hero-title {
      font-size: 2.8em;
      color: #ffcc00;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-vvv-bet__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-vvv-bet__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-vvv-bet__button {
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-vvv-bet__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-vvv-bet__button--secondary {
      background-color: #007bff;
      color: #fff;
    }

    .page-vvv-bet__button--secondary:hover {
      background-color: #0056b3;
    }

    .page-vvv-bet__image-container {
      margin: 30px auto;
      text-align: center;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      width: 100%;
      max-width: 800px;
      box-sizing: border-box;
    }

    .page-vvv-bet__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      object-fit: cover;
    }

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

    .page-vvv-bet__grid-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-vvv-bet__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    .page-vvv-bet__grid-item-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
    }

    .page-vvv-bet__grid-item-title {
      color: #ffcc00;
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-vvv-bet__grid-item-description {
      font-size: 0.95em;
      color: #cccccc;
      flex-grow: 1;
      margin-bottom: 20px;
    }

    .page-vvv-bet__list {
      list-style: none;
      padding: 0;
      margin: 30px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .page-vvv-bet__list-item {
      background-color: #2a2a2a;
      border-left: 5px solid #ffcc00;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      flex: 1 1 calc(33% - 20px);
      min-width: 280px;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-vvv-bet__list-item-title {
      color: #ffcc00;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-vvv-bet__list-item-text {
      color: #e0e0e0;
      font-size: 0.95em;
    }

    .page-vvv-bet__faq-container {
      margin-top: 40px;
    }

    .page-vvv-bet__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-vvv-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #333333;
      cursor: pointer;
      color: #ffcc00;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-vvv-bet__faq-question:hover {
      background-color: #444444;
    }

    .page-vvv-bet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none;
      color: #ffcc00;
    }

    .page-vvv-bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
      color: #ffcc00;
    }

    .page-vvv-bet__faq-item.active .page-vvv-bet__faq-toggle {
      transform: rotate(45deg);
    }

    .page-vvv-bet__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: #e0e0e0;
      font-size: 0.95em;
    }

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

    .page-vvv-bet__text-center {
      text-align: center;
    }

    .page-vvv-bet__h2 {
      font-size: 2em;
      color: #ffcc00;
      margin-bottom: 25px;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-vvv-bet__h3 {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .page-vvv-bet__paragraph {
      margin-bottom: 15px;
      color: #e0e0e0;
    }

    .page-vvv-bet__promo-image-wrapper {
      text-align: center;
      margin-top: 30px;
      width: 100%;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-vvv-bet__promo-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .page-vvv-bet__hero-title {
        font-size: 2em;
      }

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

      .page-vvv-bet__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-vvv-bet__h2 {
        font-size: 1.7em;
      }

      .page-vvv-bet__h3 {
        font-size: 1.3em;
      }

      .page-vvv-bet__section {
        padding: 30px 15px;
      }

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

      .page-vvv-bet__list-item {
        flex: 1 1 100%;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
      }

      .page-vvv-bet__list {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-vvv-bet__image-container,
      .page-vvv-bet__promo-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }

      .page-vvv-bet__image,
      .page-vvv-bet__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-vvv-bet__faq-question {
        font-size: 1em;
        padding: 15px;
      }

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

      .page-vvv-bet__faq-answer {
        padding: 15px !important;
      }

      .page-vvv-bet__floating-buttons {
        gap: 10px;
        bottom: 15px;
      }

      .page-vvv-bet__header-brand {
        font-size: 1.8em;
      }
    }
  