

body {
  font-family: sans-serif;
  margin: 0px;
  background-color: #262626;
  color: #fff;
}

.main-wrapper {
  padding-left: 5%;
  padding-right: 5%;
}

.wrapper {
    text-align: center;
    margin: auto;
    padding-left: 10%;
    padding-right: 10%;
}

.headshot {
    max-width: 300px;
    margin: auto;
}

/* Container for the images */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between images */
    flex-wrap: wrap; /* Makes images wrap on smaller screens */
  }
  
  /* Styles for each image */
  .three-up-image {
    width: 200px; /* Set the size of the images */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .three-up-image {
      width: 150px; /* Reduce image size on smaller screens */
    }
  }
  
  @media (max-width: 480px) {
    .three-up-image {
      width: 100px; /* Further reduce image size on very small screens */
    }
  }

  img {
    max-width: 500px;
    width: 100%;
  }

  ul {
    list-style-type: none;
  }
  
  body {
    font-family: sans-serif;
  }
  
  .navbar {
    background-color: #301934;
    color: white;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
    z-index: 2;
  }
  
  .nav-left {
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 2;
  }

  .nav-left a {
    color: #fff;
    text-decoration: none;
  }
  
  /* Center nav links (desktop only) */
  .nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
  }
  
  .nav-center a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s;
  }
  
  .nav-center a:hover {
    opacity: 0.7;
  }
  
  .nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
  }
  
  /* Hidden dropdown menu for mobile */
  .nav-dropdown {
    display: none;
    flex-direction: column;
    background-color: #301934;
    text-align: center;
    position: absolute;
    top: 65px; /* right below the navbar */
    left: 0;
    width: 100%;
    z-index: 1;
  }
  
  .nav-dropdown a {
    color: white;
    padding: 12px 0;
    text-decoration: none;
    font-size: 1rem;
    border-top: 1px solid #301934;
  }
  
  .nav-dropdown a:hover {
    background-color: #301934;
  }
  
  /* Show dropdown when toggled */
  .nav-dropdown.show {
    display: flex;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav-center {
      display: none; /* Hide center links in nav on small screens */
    }
  
    .nav-toggle {
      display: block;
    }
  }


  .hero {
    display: flex;
    align-items: center; /* Vertically aligns text with image */
    justify-content: space-between;
    flex-wrap: wrap; /* Allows it to stack on smaller screens */
    gap: 2rem;
    padding: 6rem 3rem;
    background-color: #301934;
    max-width: 1200px;
    margin: auto;
  }

  .hero-wrapper {
    background-color: #301934;
  }
  
  .heroText {
    flex: 1;
    min-width: 250px;
  }
  
  .heroImg {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 50%;
  }

  .apiSection {
    padding: 3rem;
  }

  .heroName {
    font-size: 50px;
    margin-bottom: 0px;
    color: #c084fc; /* Light purple / violet */
    font-weight: bold;
    text-shadow:
      0 0 5px #c084fc,
      0 0 10px #a855f7,
      0 0 20px #9333ea,
      0 0 40px #7e22ce;
  }

  .heroSubhead {
    margin-top: 0px;
  }

  .heroHeading {
    margin-bottom: 0px;
  }

  @keyframes glow {
    0%, 100% {
      text-shadow: 0 0 5px #c084fc, 0 0 10px #a855f7;
    }
    50% {
      text-shadow: 0 0 10px #e879f9, 0 0 20px #9333ea;
    }
  }
  
  .heroName {
    animation: glow 2s ease-in-out infinite;
  }

  .nav-center a:hover {
   text-decoration: underline;
  }

  .nav-center a {
    font-weight: 700;
  }

  .about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Stacks on small screens */
    background-color: #161616;
  }
  
  .about-img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .about-text {
    flex: 1;
    min-width: 280px;
    text-align: right;
  }
  
  .about-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .about-text h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #6b7280; /* gray-600 */
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .about-text {
      text-align: center;
    }
  
    .about-img {
      margin-bottom: 1rem;
    }
  }

  .about-wrapper {
    background-color: #161616;
  }

  /* Profile Card Container (optional if wrapping in a div) */
#xboxProfile {
  background-color: #107c10;
  color: white;
  padding: 20px;
  border-radius: 16px;
  max-width: 600px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  gap: 20px;
  align-items: center;
  width: 400px;
  margin: 0 20px 0 20px;
}

/* Avatar Image */
.gamer-pic {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  border: 2px solid #107c10; 
  flex-shrink: 0;
}

/* Text Styling */
.gamertag {
  font-size: 1.5em;
  font-weight: bold;
  color: #9bf00b;
  margin: 0 0 8px;
}

.gamer-score,
.gamer-rep,
.gamer-tier {
  margin: 4px 0;
  font-size: 1em;
}

#xboxProfile:hover {
  box-shadow: 0 0 20px #9bf00b;
  transition: box-shadow 0.3s ease;
}

.profile-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 30vh; /* Full screen height */
  background-color: #1c1c1c; /* Optional dark background */
  padding: 60px 0 60px 0;
}


.gamertag-heading {
text-align: center;
}

