main {
      margin-top: 80px;
    }

    .hero-section {
      padding: 5rem 0;
      background: linear-gradient(135deg, rgba(255, 23, 68, 0.1) 0%, rgba(101, 31, 255, 0.1) 100%);
      border-bottom: 1px solid rgba(101, 31, 255, 0.2);
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 23, 68, 0.3) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(100px);
      animation: pulse 10s ease-in-out infinite;
    }

    .hero-section::after {
      content: '';
      position: absolute;
      bottom: -50%;
      left: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0, 230, 118, 0.3) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(100px);
      animation: pulse 10s ease-in-out infinite reverse;
    }

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

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

    .hero-section h1 {
      margin-bottom: 2rem;
      animation: fadeInUp 0.8s ease;
    }

    .hero-section p {
      font-size: 1.25rem;
      color: var(--text-primary);
      max-width: 800px;
      animation: fadeInUp 0.8s ease 0.2s;
      animation-fill-mode: backwards;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    section {
      padding: 4rem 0;
    }

    .feature-table {
      background: rgba(21, 25, 50, 0.4);
    }

    .comparison-table {
      width: 100%;
      background: rgba(10, 14, 39, 0.6);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      margin: 2rem 0;
    }

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

    .comparison-table th {
      padding: 1.25rem;
      color: var(--light);
      font-weight: 600;
      text-align: left;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .comparison-table td {
      padding: 1rem 1.25rem;
      color: var(--text-primary);
      border-bottom: 1px solid rgba(101, 31, 255, 0.1);
    }

    .comparison-table tbody tr {
      transition: var(--transition);
    }

    .comparison-table tbody tr:hover {
      background: rgba(101, 31, 255, 0.1);
    }

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

    .timeline {
      background: linear-gradient(180deg, rgba(10, 14, 39, 0.6) 0%, rgba(21, 25, 50, 0.6) 100%);
    }

    .timeline-item {
      position: relative;
      padding-left: 3rem;
      margin-bottom: 3rem;
      animation: fadeIn 0.6s ease;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 20px;
      height: 20px;
      background: var(--gradient-secondary);
      border-radius: 50%;
      box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
    }

    .timeline-item::after {
      content: '';
      position: absolute;
      left: 9px;
      top: 20px;
      width: 2px;
      height: calc(100% + 1rem);
      background: rgba(101, 31, 255, 0.3);
    }

    .timeline-item:last-child::after {
      display: none;
    }

    .timeline-item img {
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-md);
    }

    .checklist {
      list-style: none;
      padding: 0;
    }

    .checklist li {
      padding: 0.75rem 0 0.75rem 2rem;
      position: relative;
      color: var(--text-primary);
    }

    .checklist li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--secondary);
      font-weight: bold;
      font-size: 1.25rem;
    }

    .cards-grid-3 {
      background: rgba(10, 14, 39, 0.6);
    }

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

    .cards-grid-3 h2 {
      grid-column: 1 / -1;
    }

    .game-card {
      background: rgba(21, 25, 50, 0.9);
      border-radius: var(--border-radius);
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow-md);
    }

    .game-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 30px 50px rgba(101, 31, 255, 0.4);
    }

    .game-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .game-card h3 {
      padding: 1.5rem 1.5rem 0.5rem;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .game-card p {
      padding: 0 1.5rem 1.5rem;
    }

    .payment-info {
      margin-bottom: 2rem;
      padding: 2rem;
      background: rgba(21, 25, 50, 0.6);
      border-radius: var(--border-radius);
      border-left: 4px solid var(--accent);
    }

    .protection-list {
      margin: 1.5rem 0;
    }

    .protection-list dt {
      color: var(--accent);
      font-weight: 600;
      margin-top: 1rem;
    }

    .protection-list dd {
      color: var(--text-secondary);
      margin-left: 1rem;
      margin-bottom: 0.5rem;
    }

    .highlight-boxes {
      background: linear-gradient(135deg, rgba(101, 31, 255, 0.1) 0%, rgba(0, 230, 118, 0.1) 100%);
    }

    .highlight-box {
      background: rgba(10, 14, 39, 0.8);
      border-radius: var(--border-radius);
      padding: 2.5rem;
      margin-bottom: 2rem;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .highlight-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--gradient-primary);
    }

    .highlight-box h3 {
      margin-bottom: 1.5rem;
    }

    .highlight-box img {
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-md);
    }

    .feature-list {
      background: rgba(21, 25, 50, 0.4);
    }

    .feature-item {
      margin-bottom: 3rem;
      padding: 2rem;
      background: rgba(10, 14, 39, 0.6);
      border-radius: var(--border-radius);
      transition: var(--transition);
    }

    .feature-item:hover {
      transform: translateX(10px);
      box-shadow: var(--shadow-xl);
    }

    .feature-item img {
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-md);
    }

    .feature-checklist {
      list-style: none;
      padding: 0;
    }

    .feature-checklist li {
      padding: 0.75rem 0 0.75rem 2.5rem;
      position: relative;
      color: var(--text-primary);
      border-bottom: 1px solid rgba(101, 31, 255, 0.1);
    }

    .feature-checklist li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--primary);
      font-weight: bold;
      font-size: 1.5rem;
    }

    .numbered-list {
      background: linear-gradient(180deg, rgba(21, 25, 50, 0.6) 0%, rgba(10, 14, 39, 0.6) 100%);
    }

    .strategy-item {
      display: flex;
      gap: 2rem;
      margin-bottom: 3rem;
      background: rgba(10, 14, 39, 0.8);
      border-radius: var(--border-radius);
      padding: 2rem;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .strategy-item::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .strategy-item:hover {
      box-shadow: var(--shadow-xl);
      transform: scale(1.02);
    }

    .strategy-item .number {
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      background: var(--gradient-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--light);
      box-shadow: 0 10px 30px rgba(255, 23, 68, 0.5);
    }

    .strategy-item .content {
      flex-grow: 1;
      position: relative;
      z-index: 1;
    }

    .strategy-item img {
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-md);
    }

    .accordion {
      background: rgba(10, 14, 39, 0.6);
    }

    .accordion-item {
      margin-bottom: 1rem;
      background: rgba(21, 25, 50, 0.8);
      border-radius: var(--border-radius);
      overflow: hidden;
      transition: var(--transition);
    }

    .accordion-item:hover {
      box-shadow: var(--shadow-lg);
    }

    .accordion-header {
      padding: 1.5rem;
      margin: 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(101, 31, 255, 0.1);
      transition: var(--transition);
      position: relative;
    }

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

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

    .accordion-header:hover {
      background: rgba(101, 31, 255, 0.2);
    }

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

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

    .cta-section {
      background: var(--gradient-primary);
      padding: 5rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

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

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      animation: rotate 20s linear infinite;
      z-index: 0;
      pointer-events: none;
    }

    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .cta-section h2 {
      color: var(--light);
      margin-bottom: 1rem;
    }

    .cta-section p {
      color: var(--light);
      font-size: 1.25rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .cta-section .btn {
      background: var(--light);
      color: var(--primary);
      font-size: 1.25rem;
      padding: 18px 50px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      position: relative;
      z-index: 1;
      cursor: pointer;
    }

    .cta-section .btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @media (max-width: 991px) {
      .cards-grid-3 .container {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 767px) {
      main {
        margin-top: 60px;
      }

      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.75rem;
      }

      h3 {
        font-size: 1.5rem;
      }

      section {
        padding: 3rem 0;
      }

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

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

      .comparison-table {
        font-size: 0.9rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        display: block;
        width: 100%;
      }

      .comparison-table table {
        min-width: 600px;
        display: table;
      }

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

      .timeline-item {
        padding-left: 2rem;
      }

      .strategy-item {
        flex-direction: column;
        text-align: center;
      }

      .strategy-item .number {
        margin: 0 auto;
      }

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

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