@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Pacifico&display=swap');

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

body {
  font-family: 'Arial Black', 'Helvetica Neue', sans-serif;
  min-height: 100vh;
  background-color: #1a1a1a;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 20px;
}

.menu-btn {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  cursor: pointer;
  text-transform: uppercase;
}

.menu-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 20px;
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid white;
  min-width: 150px;
}

.dropdown.active {
  display: block;
}

.dropdown a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown a:last-child {
  border-bottom: none;
}

.dropdown a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Homepage */
.homepage {
  min-height: 100vh;
  background-image: url('../images/untitled.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  position: relative;
}

/* Homepage decorative icons - aligned along left side */
.homepage-icon {
  position: absolute;
  width: 169px;
  height: auto;
  left: 23%;
  filter:
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 15px rgba(255, 107, 157, 0.9))
    drop-shadow(0 0 25px rgba(255, 107, 157, 0.9));
}

/* Icon 1 - top */
.homepage-icon-1 {
  top: 6%;
}

/* Icon 2 - middle */
.homepage-icon-2 {
  top: 38%;
}

/* Icon 3 - bottom */
.homepage-icon-3 {
  top: 70%;
}

/* Tier Pages */
.tier-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 20px 40px;
  background-size: cover;
  background-position: center;
}

.tier-1,
.tier-2,
.tier-3 {
  background-color: #C85A7A;
  position: relative;
}

/* Blurred watercolor bleed layer */
.tier-1::before,
.tier-2::before,
.tier-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/untitled.png');
  background-position: 40% 45%;
  background-size: 140%;
  background-repeat: no-repeat;
  filter: blur(30px);
  opacity: 0.6;
  z-index: 0;
}

/* Main watercolor layer */
.tier-1::after,
.tier-2::after,
.tier-3::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/untitled.png');
  background-position: 40% 45%;
  background-size: 120%;
  background-repeat: no-repeat;
  z-index: 1;
}


/* Tier Icon */
.tier-icon {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 15px rgba(255, 107, 157, 0.9))
    drop-shadow(0 0 25px rgba(255, 107, 157, 0.9));
}

/* Player content above backgrounds */
.player-list,
.player-columns {
  position: relative;
  z-index: 2;
}

/* Player List - Single Column */
.player-list {
  list-style: none;
  text-align: center;
}

.player-list li {
  color: white;
  font-family: 'Pacifico', cursive;
  font-size: 35px;
  margin: 8px 0;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.9),
    0 0 8px rgba(255, 255, 255, 0.9),
    0 0 18px rgba(255, 107, 157, 0.9),
    0 0 27px rgba(255, 107, 157, 0.9),
    0 0 36px rgba(255, 107, 157, 0.9),
    3px 3px 5px rgba(0, 0, 0, 0.5);
}

/* Two Column Layout - Offset */
.player-columns {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.player-column {
  list-style: none;
  text-align: center;
}

.player-column li {
  color: white;
  font-family: 'Pacifico', cursive;
  font-size: 32px;
  margin: 8px 0;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.9),
    0 0 8px rgba(255, 255, 255, 0.9),
    0 0 18px rgba(255, 107, 157, 0.9),
    0 0 27px rgba(255, 107, 157, 0.9),
    0 0 36px rgba(255, 107, 157, 0.9),
    3px 3px 5px rgba(0, 0, 0, 0.5);
}

.player-column.offset {
  margin-top: 40px;
}

/* Mobile fixes */
@media (max-width: 768px) {
  .homepage {
    background-size: cover;
    background-position: center;
  }

  /* Tighter tier 3 spacing on mobile */
  .tier-3 .player-column li {
    font-size: 24px;
    margin: 2px 0;
  }

  .tier-3 .player-columns {
    gap: 20px;
  }

  .tier-3 .player-column.offset {
    margin-top: 20px;
  }
}

