
  :root {
    --primary: #e9b425;
    --secondary: #2a3b4c;
    --dark: #1a2634;
    --light: #f5f5f5;
    --accent: #d64541;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
  }

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

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

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

  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary);
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  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(--primary);
  }

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

  p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }

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

  a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
  }

  a:hover {
    color: var(--accent);
  }

  ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
  }

  li {
    margin-bottom: 0.5rem;
  }

  section {
    padding: 80px 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 {
    background-color: var(--dark);
    color: var(--text-light);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

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

  .hero-section h1 {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  }

  .hero-section .lead {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-light);
  }

  /* Overview Section */
  .overview-section {
    background-color: var(--light);
  }

  .overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .overview-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .rating-box {
    display: flex;
    align-items: center;
    background-color: var(--secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    color: var(--text-light);
  }

  .rating {
    font-size: 2.5rem;
    font-weight: 700;
    margin-right: 1.5rem;
    line-height: 1;
  }

  .rating-value {
    color: var(--primary);
  }

  .rating-max {
    font-size: 1.5rem;
    opacity: 0.8;
  }

  .rating-details {
    border-left: 2px solid rgba(255,255,255,0.2);
    padding-left: 1.5rem;
  }

  .rating-stars {
    color: var(--primary);
    font-size: 1.2rem;
  }

  /* Gameplay Section */
  .gameplay-section {
    background-color: #fff;
  }

  .feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .feature-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
  }

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

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

  .gameplay-showcase {
    position: relative;
    margin-top: 3rem;
  }

  .gameplay-quote {
    background-color: var(--secondary);
    color: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    position: relative;
    margin-top: -3rem;
    margin-left: 2rem;
    max-width: 80%;
    box-shadow: var(--box-shadow);
  }

  .gameplay-quote blockquote {
    font-style: italic;
    margin-bottom: 1rem;
  }

  .gameplay-quote cite {
    font-style: normal;
    opacity: 0.8;
  }

  /* Tanks Section */
  .tanks-section {
    background-color: var(--dark);
    color: var(--text-light);
    position: relative;
  }

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

  .section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.2rem;
  }

  .tanks-carousel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tank-card {
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }

  .tank-info {
    padding: 1.5rem;
  }

  .tank-nation {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .tank-stats {
    margin-bottom: 1.5rem;
  }

  .stat {
    margin-bottom: 0.8rem;
  }

  .stat-label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
  }

  .stat-bar {
    height: 8px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
  }

  .stat-fill {
    height: 100%;
    background-color: var(--primary);
  }

  /* Graphics Section */
  .graphics-section {
    background-color: #fff;
  }

  .graphics-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .graphics-feature {
    display: flex;
    align-items: center;
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
  }

  .graphics-feature i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 1rem;
  }

  .graphics-feature h3 {
    margin-bottom: 0.5rem;
  }

  .graphics-feature p {
    margin-bottom: 0;
  }

  .graphics-comparison {
    margin-top: 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }

  /* Community Section */
  .community-section {
    background-color: var(--light);
  }

  .community-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .community-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .stat-item {
    background-color: var(--secondary);
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
  }

  .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  /* Verdict Section */
  .verdict-section {
    background-color: #fff;
  }

  .pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .pros, .cons {
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
  }

  .pros {
    background-color: rgba(40, 167, 69, 0.1);
  }

  .pros h3 {
    color: #28a745;
  }

  .cons {
    background-color: rgba(220, 53, 69, 0.1);
  }

  .cons h3 {
    color: #dc3545;
  }

  .pros h3, .cons h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .pros h3 i, .cons h3 i {
    margin-right: 0.5rem;
  }

  .final-verdict {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--secondary);
    color: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
  }

  .verdict-rating {
    margin-bottom: 2rem;
  }

  .rating-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--primary);
    box-shadow: 0 0 15px rgba(233, 180, 37, 0.5);
  }

  .rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
  }

  .verdict-text p:last-child {
    margin-bottom: 0;
  }

  /* CTA Section */
  .cta-section {
    background-color: var(--primary);
    color: var(--dark);
    text-align: center;
  }

  .cta-section h2 {
    color: var(--dark);
  }

  .cta-section h2::after {
    background-color: var(--dark);
    left: 50%;
    transform: translateX(-50%);
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
  }

  .btn i {
    margin-right: 0.5rem;
  }

  .btn-primary {
    background-color: var(--dark);
    color: var(--text-light);
  }

  .btn-primary:hover {
    background-color: #0f1923;
    color: var(--text-light);
    transform: translateY(-3px);
  }

  .btn-secondary {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
  }

  .btn-secondary:hover {
    background-color: var(--dark);
    color: var(--text-light);
    transform: translateY(-3px);
  }

  /* Responsive Styles */
  @media (min-width: 768px) {
    h1 {
      font-size: 3.5rem;
    }

    h2 {
      font-size: 2.5rem;
    }

    .feature-cards {
      grid-template-columns: repeat(3, 1fr);
    }

    .graphics-features {
      grid-template-columns: repeat(3, 1fr);
    }

    .community-stats {
      grid-template-columns: repeat(3, 1fr);
    }

    .pros-cons {
      grid-template-columns: 1fr 1fr;
    }

    .final-verdict {
      flex-direction: row;
      text-align: left;
    }

    .verdict-rating {
      margin-right: 2rem;
      margin-bottom: 0;
    }

    .cta-buttons {
      flex-direction: row;
      justify-content: center;
    }
  }

  @media (min-width: 1024px) {
    .overview-grid {
      grid-template-columns: 3fr 2fr;
    }

    .tanks-carousel {
      grid-template-columns: repeat(2, 1fr);
    }

    .community-grid {
      grid-template-columns: 3fr 2fr;
      align-items: center;
    }

    .gameplay-quote {
      position: absolute;
      bottom: 2rem;
      right: 2rem;
      margin-top: 0;
      margin-left: 0;
      max-width: 400px;
    }
  }

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