.hero-section {
      padding: 5rem 0;
      background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(131, 56, 236, 0.05) 50%, rgba(58, 134, 255, 0.1) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
      opacity: 0.1;
      animation: pulse 8s ease-in-out infinite;
    }

    .hero-section::after {
      content: '';
      position: absolute;
      bottom: -50%;
      left: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
      opacity: 0.1;
      animation: pulse 10s ease-in-out infinite reverse;
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 0.1;
      }
      50% {
        transform: scale(1.2);
        opacity: 0.05;
      }
    }

    .hero-section .container {
      position: relative;
      z-index: 1;
    }

    .overview-section {
      padding: 4rem 0;
    }

    .table-wrapper {
      overflow-x: auto;
      margin: 2rem 0;
    }

    .info-table {
      width: 100%;
      background: rgba(131, 56, 236, 0.05);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(131, 56, 236, 0.2);
    }

    .info-table td {
      padding: 1.25rem;
      border-bottom: 1px solid rgba(131, 56, 236, 0.1);
      color: var(--light);
      font-size: 1.05rem;
    }

    .info-table td:first-child {
      font-weight: 600;
      color: var(--accent);
      background: rgba(58, 134, 255, 0.05);
    }

    .info-table tr:last-child td {
      border-bottom: none;
    }

    .info-table tr:hover {
      background: rgba(255, 0, 110, 0.05);
    }

    .login-section {
      padding: 4rem 0;
      background: linear-gradient(180deg, transparent, rgba(131, 56, 236, 0.05));
    }

    .login-section article {
      margin-bottom: 2.5rem;
      padding: 2rem;
      background: rgba(58, 134, 255, 0.05);
      border-left: 4px solid var(--accent);
      border-radius: var(--radius);
    }

    .games-section {
      padding: 4rem 0;
    }

    .game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .game-card {
      background: linear-gradient(145deg, rgba(255, 0, 110, 0.05), rgba(131, 56, 236, 0.1));
      border: 1px solid rgba(255, 0, 110, 0.2);
      border-radius: var(--radius-lg);
      padding: 2rem;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .game-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-accent);
      transform: scaleX(0);
      transition: transform 0.3s;
    }

    .game-card:hover::before {
      transform: scaleX(1);
    }

    .game-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      background: linear-gradient(145deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.15));
    }

    .game-icon {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: var(--radius);
      margin-bottom: 1.5rem;
    }

    .game-card ul {
      list-style: none;
      padding: 0;
    }

    .game-card ul li {
      padding: 0.5rem 0;
      padding-left: 1.5rem;
      position: relative;
      color: rgba(247, 247, 255, 0.85);
    }

    .game-card ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 6px;
      height: 6px;
      background: var(--success);
      border-radius: 50%;
    }

    .bonuses-section {
      padding: 4rem 0;
      background: linear-gradient(135deg, rgba(131, 56, 236, 0.05) 0%, rgba(255, 0, 110, 0.1) 100%);
    }

    .bonus-blocks {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .highlight-box {
      background: rgba(10, 14, 39, 0.8);
      border: 2px solid transparent;
      background-image: linear-gradient(rgba(10, 14, 39, 0.8), rgba(10, 14, 39, 0.8)), var(--gradient-primary);
      background-origin: border-box;
      background-clip: padding-box, border-box;
      border-radius: var(--radius-lg);
      padding: 2rem;
      transition: var(--transition);
    }

    .highlight-box:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-lg);
    }

    .highlight-box img {
      width: 100%;
      height: auto;
      border-radius: var(--radius);
    }

    .strategies-section {
      padding: 4rem 0;
    }

    .strategy-list {
      counter-reset: strategy-counter;
      list-style: none;
      padding: 0;
    }

    .strategy-list li {
      position: relative;
      padding: 2rem;
      padding-left: 4rem;
      margin-bottom: 2rem;
      background: linear-gradient(90deg, rgba(131, 56, 236, 0.1) 0%, rgba(58, 134, 255, 0.05) 100%);
      border-radius: var(--radius);
      border-left: 3px solid var(--secondary);
      counter-increment: strategy-counter;
    }

    .strategy-list li::before {
      content: counter(strategy-counter);
      position: absolute;
      left: -1.5rem;
      top: 50%;
      transform: translateY(-50%);
      width: 3rem;
      height: 3rem;
      background: var(--gradient-primary);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-weight: 700;
      font-size: 1.2rem;
      box-shadow: var(--shadow-md);
    }

    .payments-section {
      padding: 4rem 0;
      background: linear-gradient(180deg, transparent, rgba(58, 134, 255, 0.05));
    }

    .payment-table-wrapper {
      overflow-x: auto;
      margin: 2rem 0;
    }

    .payment-table {
      width: 100%;
      min-width: 700px;
      background: rgba(10, 14, 39, 0.6);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(131, 56, 236, 0.2);
    }

    .payment-table thead {
      background: var(--gradient-primary);
    }

    .payment-table th {
      padding: 1.25rem;
      text-align: left;
      color: white;
      font-weight: 600;
      font-size: 1.05rem;
    }

    .payment-table td {
      padding: 1.25rem;
      border-bottom: 1px solid rgba(131, 56, 236, 0.1);
      color: var(--light);
    }

    .payment-table tbody tr:hover {
      background: rgba(255, 0, 110, 0.05);
    }

    .payment-table tbody tr:last-child td {
      border-bottom: none;
    }

    .payment-info {
      margin-bottom: 2rem;
      padding: 2rem;
      background: rgba(131, 56, 236, 0.05);
      border-radius: var(--radius);
      border-left: 4px solid var(--secondary);
    }

    .faq-section {
      padding: 4rem 0;
    }

    .faq-section .container {
      text-align: center;
    }

    .faq-section h2::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .faq-accordion {
      max-width: 900px;
      margin: 3rem auto 0;
      text-align: left;
    }

    .accordion-item {
      background: rgba(58, 134, 255, 0.05);
      border: 1px solid rgba(58, 134, 255, 0.2);
      border-radius: var(--radius);
      margin-bottom: 1rem;
      overflow: hidden;
      transition: var(--transition);
    }

    .accordion-item:hover {
      border-color: var(--accent);
      box-shadow: var(--shadow-md);
    }

    .accordion-header {
      padding: 1.5rem 2rem;
      margin: 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.25rem;
      color: var(--light);
      position: relative;
    }

    .accordion-header::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--primary);
      transition: transform 0.3s;
    }

    .accordion-item.active .accordion-header::after {
      transform: rotate(45deg);
    }

    .accordion-body {
      padding: 0 2rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .accordion-item.active .accordion-body {
      padding: 0 2rem 2rem;
      max-height: 500px;
    }

    @media (max-width: 1024px) {
      .game-categories {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }

      .bonus-blocks {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 767px) {
      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.75rem;
      }

      h3 {
        font-size: 1.35rem;
      }

      .hero-section {
        padding: 3rem 0;
      }

      .hero-section::before,
      .hero-section::after {
        width: 300px;
        height: 300px;
      }

      .game-categories {
        grid-template-columns: 1fr;
      }

      .strategy-list li {
        padding-left: 3rem;
      }

      .accordion-header {
        font-size: 1.1rem;
        padding: 1.25rem 1.5rem;
      }

      .payment-table {
        font-size: 0.9rem;
      }

      .payment-table th,
      .payment-table td {
        padding: 0.75rem;
      }
    }