body {
  background-color: black;
  color: white;
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
}

/* Center the main content with max width */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  text-align: center; /* center content text/images */
}

/* Keep the menu fixed at top-left */
.dropdown {
  position: fixed;
  top: 10px;
  left: 10px; /* fixed to left side */
  background-color: black;
  border: 1px solid white;
  padding: 10px;
  z-index: 1000;
  transform: none; /* remove centering transform */
}

.dropdown button {
  background-color: black;
  color: white;
  font-family: 'Courier New', Courier, monospace;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.dropdown-content {
  display: none;
  position: absolute;
  left: 0; /* align dropdown below button on the left */
  transform: none; /* remove centering transform */
  background-color: black;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  text-align: left; /* keep dropdown items left-aligned */
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid white;
}

.dropdown-content a:hover {
  background-color: #444;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Cyberpunk-style fancy button */
.pretty-button {
  background-color: #2d0033; /* Dark purple */
  color: #ff00ff;            /* Neon pink text */
  border: 2px solid #00ccff; /* Blue neon border */
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 18px;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 204, 255, 0.8), 
              0 0 30px rgba(0, 204, 255, 0.6), 
              0 0 45px rgba(255, 0, 255, 0.4);
  margin-top: 40px;
}

.pretty-button:hover {
  background-color: #ff00ff; /* Neon pink hover */
  color: #2d0033;            /* Dark text on hover */
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.8), 
              0 0 40px rgba(255, 0, 255, 0.6), 
              0 0 60px rgba(0, 204, 255, 0.5);
}
/* Social media icons for player profiles */
.social-icon svg {
  fill: white;
  margin: 0 8px;
  vertical-align: middle;
  transition: transform 0.2s, fill 0.2s;
}

.social-icon svg:hover {
  transform: scale(1.2);
}

.social-icon.twitch svg:hover {
  fill: #9146FF; /* Twitch purple hover */
}

.social-icon.youtube svg:hover {
  fill: #FF0000; /* YouTube red hover */
}

/* Optional: styling for player section to keep them neat */
.player {
  margin-bottom: 40px;
}

.player h2 {
  margin-bottom: 10px;
}

.social-icons svg {
  width: 40px;      /* or any size you like */
  height: 40px;
  vertical-align: middle; /* keeps them aligned nicely */
}
    .social-icons {
      font-size: 0; /* Remove whitespace between inline elements */
      margin-top: 10px;
    }
    .social-icons a {
      font-size: initial; /* Reset font-size inside the links */
      margin: 0 5px;
    }