
  :root {
    --primary: #6445ff;
    --secondary: #ff4577;
    --dark: #1a1a2e;
    --light: #f5f5f7;
    --accent: #45caff;
    --text-dark: #222233;
    --text-light: #f0f0f5;
    --bg-dark: #121220;
    --bg-light: #ffffff;
    --bg-accent: #1e1e30;
    --border-radius: 8px;
    --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: var(--bg-light);
  }

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

  /* Section Styles */
  section {
    padding: 4rem 1rem;
    position: relative;
  }

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

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

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  p {
    margin-bottom: 1rem;
  }

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

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

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

  /* Button Styles */
  .cta-button, .view-all-button, .submit-button, .read-more {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: var(--text-light);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
  }

  .cta-button:hover, .view-all-button:hover, .submit-button:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .read-more {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
  }

  .read-more:hover {
    background-color: var(--primary);
    color: var(--text-light);
  }

  .view-all-button {
    margin: 2rem auto 0;
    display: block;
    max-width: 200px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }

  .hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    padding: 2rem;
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
  }

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

  .hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
  }

  /* Game Grid Section */
  .premiery-section {
    background-color: var(--bg-light);
    padding: 4rem 1rem;
  }

  .game-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .game-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }

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

  .game-card h3 {
    margin-top: 1rem;
  }

  .game-card .read-more {
    margin: auto 1.5rem 1.5rem;
    align-self: flex-start;
  }

  /* News Section */
  .news-highlight {
    background-color: var(--bg-accent);
    color: var(--text-light);
    padding: 4rem 1rem;
  }

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

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

  .main-news {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .main-news img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1.5rem;
  }

  .main-news h2 {
    font-size: 1.8rem;
    text-align: left;
    color: var(--text-light);
  }

  .main-news p {
    margin-bottom: 1.5rem;
  }

  .side-news {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
  }

  .news-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }

  .news-card h3 {
    color: var(--text-light);
    font-size: 1.3rem;
  }

  /* Reviews Section */
  .reviews-section {
    background-color: var(--bg-light);
    padding: 4rem 1rem;
  }

  .reviews-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  .review-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
  }

  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
  }

  .score {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.2rem;
  }

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

  .review-card p {
    padding: 0 1.5rem;
    margin: 1rem 0;
  }

  .review-card .read-more {
    margin: 0 1.5rem 1.5rem;
    display: inline-block;
  }

  /* E-sport Section */
  .esport-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 1rem;
    position: relative;
  }

  .esport-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

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

  .esport-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin: 2rem 0;
  }

  .esport-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
    height: 100%;
  }

  .esport-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
  }

  .esport-card h3 {
    color: var(--text-light);
  }

  /* Newsletter Section */
  .newsletter-section {
    background-color: var(--bg-light);
    padding: 4rem 1rem;
  }

  .newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .newsletter-form {
    margin-top: 2rem;
    text-align: left;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  .form-group input[type="email"],
  .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
  }

  .checkbox-group {
    display: flex;
    align-items: center;
  }

  .checkbox-group input {
    margin-right: 10px;
  }

  .checkbox-group label {
    margin-bottom: 0;
  }

  .submit-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
  }

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

    h2 {
      font-size: 2.5rem;
    }

    .game-grid,
    .reviews-container {
      grid-template-columns: repeat(2, 1fr);
    }

    .news-container {
      grid-template-columns: 3fr 2fr;
    }

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

    .hero-section {
      padding: 4rem 2rem;
    }
  }

  @media (min-width: 1024px) {
    section {
      padding: 6rem 2rem;
    }

    .game-grid,
    .reviews-container {
      grid-template-columns: repeat(3, 1fr);
    }

    .hero-content {
      padding: 3rem;
    }

    .hero-section h1 {
      font-size: 4rem;
    }

    .hero-section p {
      font-size: 1.4rem;
    }
  }
