/* Import the pixelated font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  margin: 0;
  overflow: hidden;
  background-color: #000;
  font-family: 'Press Start 2P', monospace; /* Apply pixel font to body */
  color: white;
  /* Add a background image */
  background-image: url('images/big-background.jpg'); /* Replace with your background image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Optional: Set a max-width to prevent stretching on large screens */
  max-width: 1920px;
  width: 100%;
}

.game-header {
  font-size: 48px;
  margin-top: 20px;
  text-align: center;
}

.game-bio {
  font-size: 16px;
  margin: 10px 20px;
  text-align: center;
  max-width: 800px;
}

.game-container {
  position: relative;
  margin: 20px 0;
}

canvas {
  display: block;
  background-color: rgba(0, 0, 0, 0.8); /* Slight transparency to see background */
  border: 2px solid #fff;
  /* Adjust canvas size if needed */
  max-width: 100%;
  height: auto;
}

.social-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.social-button {
  padding: 10px 20px;
  background-color: #1DA1F2; /* Twitter Blue as default */
  border: none;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.social-button:hover {
  background-color: #0d95e8;
}

.social-button:nth-child(2) {
  background-color: #0088cc; /* Telegram Blue */
}

.social-button:nth-child(2):hover {
  background-color: #006bb3;
}

.social-button:nth-child(3) {
  background-color: #ff4500; /* Example color for Descreener */
}

.social-button:nth-child(3):hover {
  background-color: #e03e00;
}

.copy-text {
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .game-header {
    font-size: 32px;
  }

  .game-bio {
    font-size: 14px;
  }

  .social-button {
    padding: 8px 16px;
    font-size: 12px;
  }

  .copy-text {
    font-size: 12px;
  }
}
