
  :root {
    --primary: #2a4365;
    --secondary: #48bb78;
    --accent: #ed8936;
    --text: #2d3748;
    --light-text: #f7fafc;
    --background: #f7fafc;
    --card-bg: #ffffff;
    --dark-bg: #1a202c;
    --border: #e2e8f0;
    --success: #38a169;
    --error: #e53e3e;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
  }

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    color: var(--primary);
    line-height: 1.3;
  }

  h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }

  h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 1.5rem;
  }

  img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  section {
    padding: 4rem 0;
    position: relative;
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
  }

  /* Hero Section */
  .hero-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
  }

  .hero-section .bg-image {
    opacity: 0.3;
  }

  .hero-intro {
    font-size: 1.25rem;
    max-width: 800px;
    margin-bottom: 2rem;
  }

  /* Review Summary */
  .review-summary {
    background-color: var(--background);
    padding: 3rem 0;
  }

  .review-summary .container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .rating-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 2rem;
    flex: 1;
    min-width: 300px;
  }

  .rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }

  .score {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
  }

  .max {
    font-size: 1rem;
  }

  .rating-details {
    flex: 1;
  }

  .rating-categories {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .category {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .stars {
    color: var(--accent);
  }

  .review-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    min-width: 300px;
  }

  .highlight {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
  }

  .highlight h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .positive h3 {
    color: var(--success);
  }

  .negative h3 {
    color: var(--error);
  }

  .highlight ul {
    list-style-type: none;
    padding-left: 1.5rem;
  }

  .highlight li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
  }

  .highlight li:before {
    content: "•";
    position: absolute;
    left: -1rem;
  }

  .positive li:before {
    color: var(--success);
  }

  .negative li:before {
    color: var(--error);
  }

  /* Gameplay Review */
  .gameplay-review {
    background-color: var(--dark-bg);
    color: var(--light-text);
    position: relative;
  }

  .gameplay-review h2 {
    color: var(--light-text);
  }

  .gameplay-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
  }

  .gameplay-text {
    flex: 1;
    min-width: 300px;
  }

  .gameplay-image {
    flex: 1;
    min-width: 300px;
  }

  .gameplay-image img {
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transform: rotate(2deg);
  }

  /* Heroes Review */
  .heroes-review {
    background-color: var(--background);
  }

  .roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .role-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
  }

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

  .role-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }

  .hero-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .hero-tag {
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
  }

  .hero-spotlight {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
  }

  .spotlight-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
  }

  .spotlight-image {
    flex: 1;
    min-width: 300px;
  }

  .spotlight-text {
    flex: 2;
    min-width: 300px;
  }

  /* Community Review */
  .community-review {
    background-color: var(--primary);
    color: var(--light-text);
  }

  .community-review h2 {
    color: var(--light-text);
  }

  .community-review h2:after {
    background-color: var(--light-text);
  }

  .community-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .community-col {
    flex: 1;
    min-width: 300px;
  }

  .community-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    flex: 1;
  }

  .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
  }

  .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
  }

  .esports-tournaments {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .tournament-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
  }

  .tournament-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
  }

  .tournament-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Technical Review */
  .technical-review {
    background-color: var(--background);
    position: relative;
  }

  .tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .tech-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    height: 100%;
  }

  /* Conclusion */
  .conclusion {
    background-color: var(--dark-bg);
    color: var(--light-text);
  }

  .conclusion h2 {
    color: var(--light-text);
  }

  .conclusion-text {
    font-size: 1.1rem;
    max-width: 800px;
  }

  .final-verdict {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
  }

  .verdict-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .verdict-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
  }

  .verdict-label {
    font-size: 1.5rem;
    font-weight: 500;
  }

  .review-cta {
    background-color: var(--primary);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
  }

  .comment-btn {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
  }

  .comment-btn:hover {
    background-color: #dd7722;
  }

  /* User Reviews */
  .user-reviews {
    background-color: var(--background);
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .user-review-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
  }

  .user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .user-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }

  .user-details h4 {
    margin-bottom: 0.25rem;
  }

  .user-rating {
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .user-rating span {
    color: var(--text);
    margin-left: 0.5rem;
    font-size: 0.9rem;
  }

  .review-content {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 1rem;
  }

  .review-date {
    font-size: 0.8rem;
    opacity: 0.7;
    text-align: right;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.75rem;
    }
    
    h3 {
      font-size: 1.25rem;
    }
    
    .hero-intro {
      font-size: 1rem;
    }
    
    .rating-card {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    
    .verdict-score {
      font-size: 2.5rem;
    }
    
    .verdict-label {
      font-size: 1.25rem;
    }
    
    section {
      padding: 3rem 0;
    }
  }

  @media (max-width: 480px) {
    h1 {
      font-size: 1.75rem;
    }
    
    h2 {
      font-size: 1.5rem;
    }
    
    .container {
      padding: 0 15px;
    }
    
    .community-stats {
      flex-direction: column;
    }
  }

  /* Special effects */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
