
  :root {
    --primary: #6a1b9a;
    --primary-light: #9c4dcc;
    --primary-dark: #38006b;
    --secondary: #ff9800;
    --secondary-light: #ffc947;
    --secondary-dark: #c66900;
    --text-dark: #212121;
    --text-light: #f5f5f5;
    --background-light: #f5f5f5;
    --background-dark: #121212;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-800: #343a40;
    --gray-900: #212529;
  }

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

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

  section {
    padding: 60px 0;
    position: relative;
  }

  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.3;
  }

  h1 {
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
  }

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

  h3 {
    font-size: 1.5rem;
  }

  p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-dark);
  }

  img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px 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;
  }

  .btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }

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

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

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

  .btn-secondary:hover {
    background-color: var(--secondary-dark);
  }

  /* Hero Section */
  .hero-section {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
  }

  .hero-section h1 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 20px;
  }

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

  /* Featured Games */
  .featured-games {
    background-color: var(--background-light);
  }

  .games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

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

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

  .game-info {
    padding: 20px;
  }

  .release-date {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
  }

  .platform-tags span {
    background-color: var(--gray-200);
    color: var(--gray-800);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
  }

  /* Industry News */
  .industry-news {
    background-color: var(--background-dark);
    color: var(--text-light);
  }

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

  .news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .news-item {
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

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

  .news-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
  }

  .news-icon i {
    font-size: 24px;
    color: white;
  }

  .news-content h3 {
    color: var(--text-light);
    margin-bottom: 10px;
  }

  .news-content p {
    color: var(--gray-300);
  }

  .news-content a {
    color: var(--secondary-light);
    text-decoration: none;
  }

  .news-content a:hover {
    text-decoration: underline;
  }

  /* Developers Spotlight */
  .developers-spotlight {
    background-color: var(--background-light);
  }

  .developers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .developer-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .developer-info {
    padding: 20px;
  }

  .developer-info .btn-secondary {
    margin-top: 15px;
  }

  /* Upcoming Events */
  .upcoming-events {
    background-color: var(--gray-100);
  }

  .events-timeline {
    margin-top: 40px;
  }

  .event {
    display: flex;
    margin-bottom: 30px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .event-date {
    background-color: var(--primary);
    color: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    text-align: center;
  }

  .event-date .month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  .event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
  }

  .event-details {
    padding: 20px;
    flex-grow: 1;
  }

  .event-location {
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 5px;
  }

  /* Newsletter */
  .newsletter {
    background-color: var(--primary-light);
    color: var(--text-light);
    text-align: center;
  }

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

  .newsletter p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 30px;
  }

  .newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-group {
    text-align: left;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    font-size: 1rem;
  }

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

  @media (min-width: 768px) {
    .games-grid,
    .news-grid {
      grid-template-columns: repeat(2, 1fr);
    }

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

    .event {
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
  }

  @media (min-width: 1024px) {
    .games-grid {
      grid-template-columns: repeat(3, 1fr);
    }

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

    .newsletter-form {
      flex-direction: row;
      align-items: flex-end;
    }

    .form-group {
      flex: 1;
    }

    .newsletter-form button {
      align-self: flex-end;
    }
  }
