
  :root {
    --primary: #d4a71b;
    --secondary: #2a3b4c;
    --accent: #e74c3c;
    --light: #f5f5f5;
    --dark: #1a1a1a;
    --text: #333333;
    --text-light: #f5f5f5;
    --background: #f0f0f0;
    --card-bg: #ffffff;
    --buff-color: #4caf50;
    --nerf-color: #e74c3c;
    --rework-color: #3498db;
  }

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

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

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

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

  h1 {
    font-size: 3rem;
    text-transform: uppercase;
  }

  h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

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

  h3 {
    font-size: 1.75rem;
  }

  p {
    margin-bottom: 1.5rem;
  }

  img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

  .hero-section .content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
  }

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

  .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  /* Latest Update Section */
  .latest-update {
    background-color: var(--card-bg);
  }

  .latest-update .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .update-info {
    flex: 1;
  }

  .release-date {
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 1.5rem;
  }

  .update-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .key-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .feature {
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

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

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

  .feature h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .update-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .update-image img {
    max-height: 400px;
    object-fit: cover;
  }

  /* Timeline Section */
  .update-timeline {
    background-color: var(--secondary);
    color: var(--light);
    position: relative;
  }

  .update-timeline h2 {
    color: var(--light);
  }

  .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }

  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
  }

  .timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
  }

  .timeline-item:nth-child(odd) {
    left: 0;
  }

  .timeline-item:nth-child(even) {
    left: 50%;
  }

  .timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: var(--light);
    border: 4px solid var(--primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }

  .timeline-item:nth-child(even)::after {
    left: -16px;
  }

  .timeline-content {
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .timeline-date {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }

  .timeline-content h3 {
    color: var(--light);
    margin-bottom: 0.5rem;
  }

  /* Balance Changes Section */
  .balance-changes {
    background-color: var(--light);
  }

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

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

  .change-card {
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--card-bg);
    transition: transform 0.3s ease;
  }

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

  .change-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .change-header i {
    font-size: 1.5rem;
    margin-right: 1rem;
  }

  .change-header h3 {
    margin-bottom: 0;
  }

  .buff .change-header i {
    color: var(--buff-color);
  }

  .nerf .change-header i {
    color: var(--nerf-color);
  }

  .rework .change-header i {
    color: var(--rework-color);
  }

  .change-card ul {
    list-style-type: none;
  }

  .change-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .change-card li:last-child {
    border-bottom: none;
  }

  /* New Features Section */
  .new-features {
    background-color: var(--secondary);
    color: var(--light);
    position: relative;
  }

  .new-features h2 {
    color: var(--light);
    text-align: center;
  }

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

  .feature-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

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

  .feature-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
  }

  .feature-box h3 {
    color: var(--primary);
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  }

  .feature-box p {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

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

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

  .testimonial {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

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

  .testimonial-content {
    padding: 2rem;
    position: relative;
  }

  .testimonial-content::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.1);
    line-height: 1;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    box-shadow: none;
  }

  .author-info h4 {
    margin-bottom: 0.2rem;
    color: var(--secondary);
  }

  .author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.8;
  }

  /* Upcoming Updates Section */
  .upcoming-updates {
    background-color: var(--card-bg);
  }

  .roadmap {
    margin-top: 3rem;
  }

  .roadmap-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
  }

  .roadmap-item:last-child {
    margin-bottom: 0;
  }

  .roadmap-item::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 70px;
    bottom: -70px;
    width: 2px;
    background-color: var(--primary);
    z-index: 0;
  }

  .roadmap-item:last-child::before {
    display: none;
  }

  .roadmap-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    position: relative;
    z-index: 1;
  }

  .roadmap-icon i {
    color: var(--light);
    font-size: 1.5rem;
  }

  .roadmap-content {
    flex: 1;
  }

  .roadmap-content h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
  }

  .roadmap-content .release-date {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: bold;
    margin-top: 1rem;
  }

  /* Responsive Styles */
  @media (max-width: 992px) {
    .timeline::after {
      left: 31px;
    }
    
    .timeline-item {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
      left: 0;
    }
    
    .timeline-item::after {
      left: 15px;
      right: auto;
    }
    
    .timeline-item:nth-child(even)::after {
      left: 15px;
    }
    
    .latest-update .container {
      flex-direction: column;
    }
  }

  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }
    
    h2 {
      font-size: 2rem;
    }
    
    .hero-section {
      height: 50vh;
    }
    
    .key-features, .changes-grid, .features-container, .testimonials {
      grid-template-columns: 1fr;
    }
    
    .roadmap-item {
      flex-direction: column;
    }
    
    .roadmap-icon {
      margin-bottom: 1rem;
      margin-right: 0;
    }
    
    .roadmap-item::before {
      left: 25px;
      top: 50px;
      height: calc(100% - 50px);
      width: 2px;
    }
  }

  /* Link Styles */
  a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  a:hover {
    color: var(--secondary);
    text-decoration: underline;
  }

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