/* Global Font Reset */
html, body, h1, h2, h3, h4, h5, h6, p, ul, li, a, table, td, th {
  font-family: inherit;
}

/* Global link styling: Twitch purple */
a, 
a:visited,
.dropdown-content a,
.submenu a {
  color: #9146FF !important;
  text-decoration: none;
  font-family: 'Courier New', monospace;
}

a:hover,
.dropdown-content a:hover,
.submenu a:hover {
  color: #b481ff !important;
  text-decoration: underline;
}

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: 'Courier New', Courier, monospace;
  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 */
/* Make icons visible by default */
.social-icon svg path {
  fill: white;                    /* default visible on black bg */
  transition: transform .2s, fill .2s;
}

/* Hover colors per platform */
.social-icon.tiktok:hover svg path  { fill: #69C9D0 !important; }
.social-icon.twitch:hover svg path  { fill: #9146FF; }
.social-icon.youtube:hover svg path { fill: #FF0000; }
.social-icon.kick:hover svg path     { fill: #53FC18; }   /* Kick green */
.social-icon.instagram:hover svg path { fill: #E4405F; }  /* Instagram pink/red */
.social-icon.twitter:hover svg path   { fill: #1DA1F2; }  /* Twitter blue */

/* keep the scale effect */
.social-icon svg:hover { transform: scale(1.2); }



/* 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;
}

/* -------------------------------
   🔽 Submenu Styles for About Us
----------------------------------*/

.submenu-container {
  position: relative;
}

.submenu-container > a {
  padding-right: 20px; /* room for arrow */
}

.submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: black;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  border: 1px solid white;
  z-index: 2;
}

.submenu a {
  border-bottom: 1px solid white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  color: white;
}

.submenu a:hover {
  background-color: #333;
}

.submenu-container:hover .submenu {
  display: block;
}
/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.gallery-img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    object-fit: cover;
    box-shadow: 0 4px 18px rgba(0,0,0,.45);
    transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 26px rgba(0,0,0,.6);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 30px;
}

.lightbox img {
    max-width: 95%;
    max-height: 95%;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,0,0,.8);
}

.lightbox.show {
    display: flex;
    animation: fadeIn .25s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
