@charset "UTF-8";
  
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/*
Fade in from left animation
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-150px); }
  to { opacity: 1; transform: translateX(0); }
}
*/


* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  background-color: #24252A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: white;
}

li, a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500px;
  font-size: 16px;
  color: #edf0f1;
  text-decoration: none;
}

.logo {
  width: 140px;
  height: 140px;
  cursor: pointer;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 10px;
  position: relative;
}

.nav-links {
  list-style: none;
}

.nav-links li {
  display: inline-block;
  padding: 0px 20px;
}

.nav-links li a {
  transition: all 500ms ease 0s;
}

.nav-links li a:hover {
  color: #33d0ac;
  background-color: rgb(65, 64, 64);
  padding: 0px 30px;
}


.divider {
  position: absolute;
  margin-bottom: 16px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #FFA500;
}

.container {
  max-width: 1450px; /* The maximum width your content will grow to */
  margin: 0 auto;    /* "0" for top/bottom, "auto" for left/right (centers it) */
  padding: 0 1rem;   /* "0" for top/bottom, "1rem" for left/right */
}

.luban-banner {
  position: relative;
  height: 100vh; /* Fixed viewport height */
  min-height: 400px;
  max-height: 700px;
  background-image: url('../images/luban_test_basic.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 500ms ease-in-out forwards;
}

.luban-splash {
  display: none;
}

/* This add the fade at the bottom (huge btw)*/
.luban-banner::after { 
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; /* Adjust this to control how much of the image fades */
  background: linear-gradient(to top, rgba(36, 37, 42, 0.451) 0%, transparent 100%);
  pointer-events: none; /* This ensures clicks pass through to the image */
}


.text-overlay {
  text-align: center;
  color: white;
  position: absolute;
  top: 80%; /* Always center vertically */
  left: 50%;
  transform: translate(-50%, -50%); /* True center */
  z-index: 2;
  width: 90%; /* Prevent overflow */
  padding: 20px;
  background-color: #21212213;
}

.text-overlay h1 {
  font-size: clamp(2rem, 8vw, 4.25rem);
  text-shadow: 0px 0px 1em rgba(0, 0, 0, 0.8);
  font-weight: bold;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  line-height: 1.2;
}

.text-overlay p {
  font-size: clamp(1.2rem, 4vw, 3rem);
  text-shadow: 0px 0px 1em rgba(0, 0, 0, 0.8);
  font-weight: bold;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  line-height: 1.3;
}

.introduction-section h2 {
  color: white;
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.introduction-section h2::before {
   content: "";
   display: inline-block;
   width: 40px;
   height: 20px;
   background-color: #FFA500;
   clip-path: polygon(0 0, 80% 0, 100% 100%, 20% 100%);
   margin-right: 10px;
}

.introduction-section h2::after {
  content: '';
  display: inline-block;
  background-color: #FFA500;
  height: 4px;
  flex: 1;
  margin-left: 10px;
}

.introduction-section p {
  margin-top: 20px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.9em;
  margin-bottom: 15px;
}

.winrates-container-luban {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.winrates-container-luban img {
  max-width: 200px;
}

.winrates-container-luban::after {
  content: "I'm goated 🐐";
  font-size: clamp(16px, 4vw, 25px);
  font-weight: 450;
  order: 1;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.winrates-container-luban::after {
  position: static !important;
  margin-left: 0 !important;
}

.cat-boom {
  max-width: 50px;
  max-height: 50px;
  position: absolute;
  margin-left: 20px;
}

.actual-winrate-container {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}

.actual-winrate-container img {
  max-width: 200px;
}

.links-main-area {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}

.btn-section {
  display: flex;
  justify-content: center; /* Center the buttons */
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px auto; /* Center the entire section */
  max-width: 1200px; /* Prevent stretching too wide */
  position: relative; /* For proper stacking context */
}

.link-btn {
  background-color: #24252A;
  color: white;
  border: 2px solid rgb(107, 156, 248);
  padding: clamp(15px, 3vw, 30px) clamp(30px, 6vw, 60px);
  border-radius: 10px;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 3vw, 24px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.251);
  width: 280px; /* Fixed width for consistency */
  margin: 0; /* Remove individual margins */
  text-align: center;
  text-decoration: none; /* If using <a> tags */
  display: flex; /* For better centering */
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hover effects */
.link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 156, 248, 0.3);
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}

/* Make sure anchor tags don't have extra styles */
.btn-section a {
  text-decoration: none;
  display: block; /* Each button on its own line in flex context */
}

.match-btn, .patch-btn {
  margin-right: 0px;
}


/* Hover effects */
.link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: white;
  color: black;
}

/* Active state */
.link-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Focus state for accessibility */
.link-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.5);
}

.cat-container {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  position: relative;
  z-index: 1; /* Ensure it's above background but below buttons */
}

.cat-container img {
  max-width: min(200px, 30vw);
  height: auto;
}

.hero-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  position: relative;
}

.select-hero {
  font-size: 69px; /* lol */
  font-weight: bold;
  text-shadow: 0 0 1em rgba(0, 0, 0, 0.334);
  border-top: 4px solid #FFA500;
}

.hero-selector img {
  margin-top: 20px;
  max-width: 600px;
}

.new-release {
  background-color: rgb(243, 94, 94);
  color: rgb(255, 255, 255);
  padding: clamp(3px, 1vw, 5px) clamp(12px, 3vw, 20px);
  font-size: clamp(14px, 3vw, 30px);
  border-radius: 50px;
  font-weight: 800;
  font-style: italic;
  margin-top: -20px; /* Adjust based on your layout */
  z-index: 2;
  /* Remove absolute positioning */
  position: static;
  margin-left: 0;
}

.hero-name {
  margin-top: 30px;
  font-size: 39px;
  font-weight: normal;
  text-shadow: 0 0 1em rgba(0, 0, 0, 0.334);
  margin-bottom: 20px;
}