@import url("../css/styles-new.css");


:root {
    --primary: #ff0055;
    --bg: #ffffff;
    --card-bg: rgba(20, 20, 20, 0.85);
    --text: #eee;
    --trans: 0.3s;
    --radius: 8px;
}

#squad {
    background: rgb(216, 216, 216);
    color: var(--text);
}

























.achieve-icon {
  position: relative;
  width: 28px;
  cursor: help;
}
.achieve-icon img {
  width: 100%;
}
.achieve-icon:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -34px;
  background: var(--card-bg);
  padding: 4px 8px;
  font-size: 0.75rem;
  border-radius: var(--radius);
  white-space: nowrap;
}















/* === HERO SECTION === */
.hero-section-lol {
  position: relative;
  margin-top: 40px;
  height: 61vh;
  background: url('../images-new/Slides-about-section/esports3.jpg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  filter: grayscale(100%) contrast(120%) brightness(45%);
  transition: filter 0.4s ease; /* fast by default */
}

.hero-section-lol.nofilter {
  filter: grayscale(0) contrast(140%) brightness(55%) !important;
  transition: filter 0.25s ease; /* instant color on scroll */
}

.hero-section-lol.smoothback {
  transition: filter 1s ease-in-out !important; /* smooth return to B/W */
}

.overlay-lol {
  background: rgba(0, 0, 0, 0.55); /* slight black overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-wrapper-lol {
  color: #fff;
  padding: 0 2rem;
  max-width: 900px;
  animation: fadeInUp 1.2s ease-out both;
}

.subtitle-lol {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.title-lol {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

/* === DESCRIPTION SECTION === */
.description-lol {
  font-weight: 450;
  padding: 3rem 6.7rem;
  max-width: 960px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: #111;
  text-align: center;
}

/* === ANIMATION === */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}






