/* TROPHIES / SHARED style.css */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

body { padding-top: 64px; }

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.4) 0%,
    rgba(10,10,10,0.65) 60%,
    rgba(10,10,10,1) 100%
  );
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 0.95;
}

.hero-text h4 {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  margin: 0;
  max-width: 600px;
}

/* TROPHY HISTORY INTRO */
.trophy-history {
  background: var(--red);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.trophy-history::before {
  content: 'GLORY';
  position: absolute;
  font-family: var(--font-display);
  font-size: 16rem;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.trophy-history .text-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.trophy-history h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
  line-height: 0.95;
}

.trophy-history h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin: 0;
}

/* TROPHY DISPLAY SECTIONS */
.prem-trophies,
.champ-trophies,
.facup-trophies,
.leaguecup-trophies {
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.prem-trophies { background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.06); }
.champ-trophies { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); }
.facup-trophies { background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.06); }
.leaguecup-trophies { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); }

.trophy-display-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  width: 100%;
}

.trophy {
  width: auto;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 32px rgba(218,41,28,0.3));
  transition: transform 0.4s ease, filter 0.4s;
}

.trophy:hover {
  transform: scale(1.05) translateY(-4px);
  filter: drop-shadow(0 16px 48px rgba(218,41,28,0.5));
}

.prem-trophies h1,
.champ-trophies h1,
.facup-trophies h1,
.leaguecup-trophies h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
  line-height: 1;
}

.trophy-count {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 0.5rem 0;
  text-shadow: 0 0 60px rgba(255,200,69,0.25);
}

.win-dates {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--muted);
  line-height: 1.9;
  max-width: 600px;
  text-align: center;
}

@media (max-width: 480px) {
  .trophy-count { font-size: 5rem; }
  .trophy { height: 130px; }
}


::-webkit-scrollbar{
  display: none;
}