
  :root {
    --primary: #6a4cff;
    --secondary: #ff4d8c;
    --dark: #1a1a2e;
    --light: #f5f5f7;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --success: #28a745;
    --danger: #dc3545;
    --body-bg: #f8f9fa;
    --card-bg: #ffffff;
    --text-color: #333333;
    --text-light: #ffffff;
    --border-radius: 8px;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }

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

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

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

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

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

  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: var(--secondary);
  }

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

  h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }

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

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

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

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

  .news-hero .subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
  }

  /* Featured News Section */
  .featured-news {
    background-color: var(--body-bg);
  }

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

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

  @media (min-width: 1024px) {
    .news-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .news-card.featured {
      grid-column: span 2;
    }
  }

  .news-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }

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

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

  .news-content {
    padding: 20px;
  }

  .date {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 10px;
  }

  .read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-top: 10px;
  }

  .read-more i {
    margin-left: 5px;
    transition: var(--transition);
  }

  .read-more:hover i {
    transform: translateX(5px);
  }

  /* Releases Calendar */
  .releases-calendar {
    background-color: var(--light);
  }

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

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

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

  .calendar-item {
    display: flex;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }

  .calendar-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }

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

  .calendar-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
  }

  .calendar-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
  }

  .game-info {
    padding: 15px;
    flex-grow: 1;
  }

  .game-info h4 {
    margin-bottom: 5px;
  }

  .game-info p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 5px;
  }

  .genre {
    display: inline-block;
    background-color: var(--gray-light);
    color: var(--gray);
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 30px;
  }

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

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

  .industry-news h2:after {
    background: var(--secondary);
  }

  .news-list {
    margin-top: 30px;
  }

  .news-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
  }

  .news-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }

  .news-item h3 {
    color: var(--text-light);
  }

  .news-item .date {
    color: rgba(255, 255, 255, 0.7);
  }

  .news-item .read-more {
    color: var(--secondary);
  }

  .news-item .read-more:hover {
    color: var(--text-light);
  }

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

  .newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
  }

  .newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }

  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }

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

  input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
  }

  input[type="email"]:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 76, 255, 0.2);
  }

  .preference-title {
    font-weight: 600;
    margin-bottom: 10px;
  }

  .checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  @media (min-width: 768px) {
    .checkbox-group {
      grid-template-columns: repeat(4, 1fr);
    }
  }

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

  .checkbox input {
    margin-right: 8px;
  }

  .btn-subscribe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }

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

  .btn-subscribe i {
    margin-left: 8px;
  }
