:root {
    --bg: #121212;
    --fg: #f0f0f0;
    --accent: #8b5e3c;
    --card-bg: #1e1e1e;
    --card-border: #333;
    --footer-fg: #aaa;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: var(--bg);
    color: var(--fg);
  }
  
  .navbar {
    background-color: #000;
  }
  
  .navbar-brand,
  .nav-link {
    color: var(--fg) !important;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
  }
  
  .nav-link:hover {
    color: var(--accent) !important;
  }
  
  .hero-section {
    background-color: #181818;
    padding: 100px 20px 60px;
    text-align: center;
  }
  
  .hero-section h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
  }
  
  .hero-section p {
    font-size: 1.4rem;
    font-style: italic;
    opacity: 0.9;
  }
  
  .hero-section img {
    max-height: 480px;
    width: auto;
    margin: 40px auto 20px;
    image-rendering: pixelated;
  }
  
  #games {
    padding: 60px 20px;
  }
  
  #games h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .game-card {
    border: 2px solid var(--card-border);
    border-radius: 12px;
    background-color: var(--card-bg);
    padding: 20px;
    box-shadow: 6px 6px 0 var(--accent);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .game-card:hover {
    transform: scale(1.02);
    box-shadow: 8px 8px 0 var(--accent);
  }
  
  .game-card img {
    width: 100%;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 20px;
  }
  
  .card-title {
    font-size: 2rem;
  }
  
  .btn-glitch {
    background-color: var(--accent);
    color: white;
    font-size: 1.1rem;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    box-shadow: 2px 2px 0 #000;
    transition: background-color 0.2s ease;
  }
  
  .btn-glitch:hover {
    background-color: #74492f;
  }
  
  footer {
    background-color: #000;
    color: var(--footer-fg);
    text-align: center;
    padding: 20px;
    font-size: 1rem;
    font-family: 'VT323', monospace;
  }
  
  .about-section {
    background-color: #222;
    padding: 60px 20px;
    color: #fff;
  }
  
  .about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .team-member {
    background-color: #333;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .team-member h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .team-member p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
  }
  
  .social-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .social-buttons a {
    background-color: #8b5e3c;
    color: white;
    font-size: 1rem;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
  }
  
  .social-buttons a:hover {
    background-color: #74492f;
  }

  .mini-title{
    color: rgb(100,100,100);
    font-size: 70%;
  }
  