body {
  margin: 0;
  padding: 0;
  background: #f7f7f7;
  font-family: 'Segoe UI', Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
#game-container {
  background: #fff;
  border: 2px solid #333;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#gameCanvas {
  background: #eaeaea;
  display: block;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #bbb;
  max-width: 100vw;
  height: auto;
}
#score {
  font-size: 1.2em;
  margin: 10px 0;
  color: #333;
}
#game-over {
  text-align: center;
  margin-top: 10px;
}
#mobile-controls {
  display: none;
  margin-bottom: 10px;
}
#mobile-controls button {
  font-size: 1.1em;
  padding: 10px 20px;
  margin: 0 5px;
  border: none;
  border-radius: 5px;
  background: #333;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
#mobile-controls button:active {
  background: #666;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background-color: #121212;
      color: #e0e0e0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    a { color: inherit; text-decoration: none; }
    .container {
      width: 90%;
      max-width: 800px;
      margin: auto;
      padding: 2rem 0;
      flex: 1;
    }
    h1, h2 {
      margin-bottom: 1rem;
      font-weight: 600;
    }
    p {
      margin-bottom: 1.5rem;
    }

    /* Sections */
    .section {
      margin-bottom: 3rem;
    }

    /* Button */
    .instagram-btn {
      display: inline-block;
      background-color: #E4405F;
      color: #fff;
      padding: 0.75rem 1.5rem;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: 500;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      cursor: pointer;
    }
    .instagram-btn:hover {
      background-color: #C13584;
      transform: translateY(-2px);
    }

    /* Footer */
    footer {
      text-align: center;
      padding: 1rem 0;
      font-size: 0.9rem;
      background-color: #1e1e1e;
    }

    /* Responsive */
    

@media (max-width: 1024px) {
  #gameCanvas {
    width: 98vw;
    height: 120px;
  }
  #mobile-controls button:active {
  background: #666;
  }
  #mobile-controls {
    display: flex;
    justify-content: center;
  }
  #game-container {
    padding: 5vw 1vw;
    width: 100vw;
    min-width: 0;
    box-sizing: border-box;}
    
    .container { width: 95%; padding: 1rem 0; }
    .instagram-btn { width: 100%; text-align: center; }
  }
