
    :root {
      --page-b52-primary-color: #e44d26;
      --page-b52-secondary-color: #333;
      --page-b52-accent-color: #ffcc00;
      --page-b52-text-light: #f8f8f8;
      --page-b52-text-dark: #222;
      --page-b52-bg-dark: #1a1a1a;
      --page-b52-bg-light: #2c2c2c;
      --page-b52-border-color: #555;
      --page-b52-safe-zone-height: 160px;
    }

    .page-b52 {
      font-family: 'Arial', sans-serif;
      color: var(--page-b52-text-light);
      background-color: var(--page-b52-bg-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .page-b52__section {
      padding: 40px 0;
      text-align: center;
      position: relative;
    }

    .page-b52__section--dark {
      background-color: var(--page-b52-bg-light);
    }

    .page-b52__section-title {
      font-size: 2.5em;
      color: var(--page-b52-accent-color);
      margin-bottom: 25px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-b52__section-title span {
      color: var(--page-b52-primary-color);
    }

    .page-b52__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-b52-text-light);
    }

    .page-b52__hero {
      position: relative;
      width: 100%;
      min-height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
      overflow: hidden;
      padding-top: var(--page-b52-safe-zone-height);
    }

    .page-b52__hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .page-b52__hero-content {
      text-align: center;
      z-index: 1;
      padding: 20px;
      max-width: 90%;
    }

    .page-b52__hero-title {
      font-size: 3em;
      color: var(--page-b52-accent-color);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-b52__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-b52-text-light);
      margin-bottom: 30px;
      font-weight: normal;
    }

    .page-b52__btn {
      display: inline-block;
      background-color: var(--page-b52-primary-color);
      color: var(--page-b52-text-light);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      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-b52__btn:hover {
      background-color: #d1411f;
      transform: translateY(-2px);
    }

    .page-b52__btn--accent {
      background-color: var(--page-b52-accent-color);
      color: var(--page-b52-text-dark);
    }

    .page-b52__btn--accent:hover {
      background-color: #e6b800;
      color: var(--page-b52-text-dark);
    }

    .page-b52__floating-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-b52-primary-color);
      color: var(--page-b52-text-light);
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      animation: page-b52-pulse 2s infinite;
      display: none;
    }

    .page-b52__floating-btn:hover {
      background-color: #d1411f;
    }

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

    .page-b52__steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-b52__step-item {
      background-color: var(--page-b52-bg-light);
      border: 1px solid var(--page-b52-border-color);
      border-radius: 10px;
      padding: 25px;
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-b52__step-item:hover {
      transform: translateY(-5px);
    }

    .page-b52__step-icon {
      font-size: 3em;
      color: var(--page-b52-accent-color);
      margin-bottom: 15px;
    }

    .page-b52__step-title {
      font-size: 1.5em;
      color: var(--page-b52-primary-color);
      margin-bottom: 10px;
    }

    .page-b52__step-description {
      color: var(--page-b52-text-light);
    }

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

    .page-b52__game-card {
      background-color: var(--page-b52-bg-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      text-decoration: none;
      color: var(--page-b52-text-light);
      display: block;
    }

    .page-b52__game-card:hover {
      transform: translateY(-5px);
    }

    .page-b52__game-card-image {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-bottom: 1px solid var(--page-b52-border-color);
    }

    .page-b52__game-card-title {
      padding: 15px;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-b52-accent-color);
    }

    .page-b52__promo-card {
      background: linear-gradient(45deg, var(--page-b52-primary-color), #f06a46);
      border-radius: 15px;
      padding: 30px;
      margin-top: 30px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-b52__promo-title {
      font-size: 2em;
      color: var(--page-b52-text-light);
      margin-bottom: 15px;
      text-align: center;
    }

    .page-b52__promo-description {
      font-size: 1.1em;
      color: var(--page-b52-text-light);
      margin-bottom: 20px;
      text-align: center;
    }

    .page-b52__promo-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

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

    .page-b52__provider-item {
      background-color: var(--page-b52-bg-light);
      border-radius: 8px;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
      height: 80px;
    }

    .page-b52__provider-item:hover {
      transform: scale(1.05);
    }

    .page-b52__provider-logo {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
    }

    .page-b52__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-b52__faq-item {
      background-color: var(--page-b52-bg-light);
      border: 1px solid var(--page-b52-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .page-b52__faq-question {
      padding: 18px 20px;
      background-color: #3a3a3a;
      color: var(--page-b52-accent-color);
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s ease;
    }

    .page-b52__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-b52__faq-answer {
      padding: 15px 20px;
      color: var(--page-b52-text-light);
      background-color: var(--page-b52-bg-light);
      display: none;
      text-align: left;
    }

    .page-b52__faq-question::after {
      content: '+';
      font-size: 1.5em;
      transition: transform 0.3s ease;
    }

    .page-b52__faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    @media (max-width: 768px) {
      .page-b52__hero-title {
        font-size: 2.2em;
      }
      .page-b52__hero-subtitle {
        font-size: 1.2em;
      }
      .page-b52__section-title {
        font-size: 2em;
      }
      .page-b52__step-item {
        flex: 1 1 100%;
      }
      .page-b52__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      }
      .page-b52__floating-btn {
        display: block;
      }
      .page-b52__promo-card {
        padding: 20px;
      }
      .page-b52__promo-title {
        font-size: 1.5em;
      }
    }

    @media (max-width: 480px) {
      .page-b52__hero {
        min-height: 350px;
      }
      .page-b52__hero-title {
        font-size: 1.8em;
      }
      .page-b52__hero-subtitle {
        font-size: 1em;
      }
      .page-b52__btn {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-b52__section-title {
        font-size: 1.8em;
      }
    }
  