:root {
    --primary: #f39c12;
    --dark: #000000;
    --gray: #bdc3c7;
    --light: #ffffff;
  }
  
  body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--dark);
    color: var(--light);
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  .navbar {
    background-color: #000000;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    height: 40px;
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  
  .nav-links li a:hover {
    color: var(--primary);
  }
  
  .hero {
    background: linear-gradient(to right, #e67e22, #f39c12);
    text-align: center;
    padding: 100px 20px;
  }
  
  .hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2em;
    color: rgb(0, 0, 0);
  }
  
  .section {
    padding: 60px 0;
  }
  
  .about p {
    max-width: 700px;
    margin-top: 20px;
    font-size: 1.1em;
  }
  
  .intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 15px;
  }

  .games .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 30px;
  }
  
  .gallery img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  
  .gallery img:hover {
    transform: scale(1.03);
  }
  
  .contact p {
    font-size: 1.1em;
    margin-bottom: 10px;
  }
  
  .footer {
    background-color: #111827;
    text-align: center;
    padding: 20px;
    color: var(--gray);
  }
  
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      gap: 15px;
    }
  
    .hero h1 {
      font-size: 2em;
    }
  
    .hero p {
      font-size: 1em;
    }
  }
  