
    :root {
      --primary: #2a1b5d;
      --secondary: #8b5cf6;
      --accent: #f59e0b;
      --light: #f3f4f6;
      --dark: #1f2937;
      --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: 'Montserrat', sans-serif;
      line-height: 1.6;
      color: var(--dark);
      background-color: #f9fafb;
    }
    
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }
    
    h1, h2, h3, h4 {
      font-family: 'Cinzel', serif;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    
    .section {
      position: relative;
      padding: 5rem 2rem;
      overflow: hidden;
    }
    
    .bg-image {
      position: absolute;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      top: 0;
      left: 0;
      opacity: 0.15;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    
    .btn {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      text-transform: uppercase;
      letter-spacing: 1px;
      border: none;
    }
    
    .btn-primary {
      background-color: var(--primary);
      color: white;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .btn-primary:hover {
      background-color: #3c2980;
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    .btn-secondary {
      background-color: var(--accent);
      color: var(--dark);
    }
    
    .btn-secondary:hover {
      background-color: #e8930a;
      transform: translateY(-3px);
    }
    
    /* Hero Section */
    .hero {
      min-height: 90vh;
      display: flex;
      align-items: center;
      background-color: var(--primary);
      color: white;
      clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
      padding-bottom: 8rem;
    }
    
    .hero__content {
      max-width: 700px;
    }
    
    .hero__title {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      text-shadow: var(--text-shadow);
      color: white;
    }
    
    .hero__subtitle {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      opacity: 0.9;
      text-shadow: var(--text-shadow);
    }
    
    /* Gry Section */
    .games {
      padding: 6rem 2rem;
    }
    
    .games__title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: var(--primary);
    }
    
    .games__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    
    .game-card {
      background: white;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }
    
    .game-card__image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    
    .game-card__content {
      padding: 1.5rem;
    }
    
    .game-card__title {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: var(--primary);
    }
    
    /* Features Section */
    .features {
      background-color: var(--light);
      clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
      padding: 8rem 2rem;
    }
    
    .features__title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: var(--primary);
    }
    
    .features__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }
    
    .feature {
      background: white;
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease;
    }
    
    .feature:hover {
      transform: translateY(-5px);
    }
    
    .feature__icon {
      font-size: 2.5rem;
      color: var(--accent);
      margin-bottom: 1rem;
    }
    
    .feature__title {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      color: var(--primary);
    }
    
    /* Review Section */
    .review {
      padding: 6rem 2rem;
    }
    
    .review__container {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 900px;
      margin: 0 auto;
    }
    
    .review__title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: var(--primary);
    }
    
    .review__content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    
    .review__image {
      border-radius: 1rem;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      max-width: 100%;
      height: auto;
    }
    
    /* Ranking Section */
    .ranking {
      background-color: var(--primary);
      color: white;
      padding: 6rem 2rem;
      clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    }
    
    .ranking__title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: white;
      text-shadow: var(--text-shadow);
    }
    
    .ranking__list {
      max-width: 800px;
      margin: 0 auto;
      list-style: none;
    }
    
    .ranking__item {
      background: rgba(255, 255, 255, 0.1);
      margin-bottom: 1.5rem;
      padding: 1.5rem;
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      transition: transform 0.3s ease, background 0.3s ease;
    }
    
    .ranking__item:hover {
      transform: translateX(10px);
      background: rgba(255, 255, 255, 0.2);
    }
    
    .ranking__number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--accent);
      min-width: 50px;
      text-align: center;
    }
    
    .ranking__content h3 {
      margin-bottom: 0.5rem;
      color: white;
    }
    
    /* CTA Section */
    .cta {
      padding: 6rem 2rem;
      text-align: center;
    }
    
    .cta__container {
      max-width: 700px;
      margin: 0 auto;
    }
    
    .cta__title {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: var(--primary);
    }
    
    .cta__buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .hero__title {
        font-size: 2.5rem;
      }
      
      .hero__subtitle {
        font-size: 1.25rem;
      }
      
      .section {
        padding: 4rem 1.5rem;
      }
      
      .games__grid,
      .features__grid {
        grid-template-columns: 1fr;
      }
      
      .ranking__item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
      }
      
      .cta__buttons {
        flex-direction: column;
        align-items: center;
      }
    }
  