* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #1a1a1a;
    color: white;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 60px;
    width: auto;
  }
  
  .header-logo {
    margin-bottom: 2rem;
  }
  
  .header-logo img {
    height: 200px;
    width: auto;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
  }
  
  header {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(45deg, #2C1810, #6B4F3C);
    color: #E8D5C4;
  }
  
  header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  section {
    padding: 4rem 5%;
  }
  
  #about p {
    margin-bottom: 1rem;
  }
  
  h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .game-card {
    background: #E8D5C4;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(44, 24, 16, 0.1);
  }
  
  .game-card:hover {
    transform: translateY(-5px);
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .position-card {
    background: #E8D5C4;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(44, 24, 16, 0.1);
  }
  
  .newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .newsletter-form button {
    padding: 0.5rem 1rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-link {
    color: #1a1a1a;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
  }
  
  .social-link:hover {
    background: #1a1a1a;
    color: white;
  }
  
  footer {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    color: white;
  }
  
  @media (max-width: 768px) {
    header h1 {
      font-size: 2rem;
    }
  
    .nav-links {
      display: none;
    }
  }
  
  #blog, #careers, #contact {
    text-align: center;
  }
  
  .blog-preview, #careers p, #contact p {
    margin: 0 auto;
    max-width: 600px;
  }