/* =====================
   GLOBAL RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =====================
   BODY
===================== */
body {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #0b1a4a, #050b2e);
  font-family: 'Montserrat', sans-serif;
  color: white;
  overflow-x: hidden;
}

/* =====================
   MAIN CONTAINER
===================== */
.container {
  max-width: 420px;
  margin: auto;
  padding: 20px;
  position: relative;
}

/* =====================
   TOP LOGO
===================== */
.logo-top {
  text-align: center;
  margin-bottom: 8px;
  z-index: 3;
  position: relative;
}

.logo-top img {
  width: 100px;
  max-width: 100%;
}

/* =====================
   ATHLETIC BACKGROUND
   (CORNER LOCKED)
===================== */
.athletic-bg {
  position: absolute;
  top: 110px;
  right: -150px;
  width: 360px;
  opacity: 0.28;
  z-index: 1;
  pointer-events: none;
}

/* =====================
   TITLE
===================== */
.title {
  text-align: center;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

.title .small {
  font-size: 15px;
  letter-spacing: 7px;
  opacity: 0.9;
}

.title .main {
  font-family: 'Franklin Gothic Demi', sans-serif;
  font-size: 40px;
  font-weight: bold;
}

/* =====================
   SCOREBOARD
===================== */
.scoreboard {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* =====================
   HOUSE ROW
===================== */
.house {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: 40px;
  font-family: "Bell MT", serif;
  font-size: 25px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  will-change: transform;
}

/* =====================
   SCORE VALUE
===================== */
.score {
  background: white;
  color: black;
  padding: 6px 14px;
  border-radius: 25px;
  font-weight: bold;
}

/* =====================
   HOUSE COLORS
===================== */
.opal {
  background: #6a1bb1;
}

.crystal {
  background: #e31818;
}

.diamond {
  background: #ffcc00;
  color: black;
}

.sapphire {
  background: #0d2bff;
}

/* =====================
   FIRST PLACE GLOW
===================== */
.house.first {
  box-shadow: 0 0 22px 6px rgba(255, 255, 255, 0.85);
  animation: glow 3s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 14px 4px rgba(255, 255, 255, 0.6);
  }
  to {
    box-shadow: 0 0 24px 10px rgba(255, 255, 255, 1);
  }
}

/* =====================
   FOOTER LOGO
===================== */
.footer-logo {
  text-align: center;
  margin-top: 25px;
}

.footer-logo img {
  width: 82px;
}

/* =====================
   DESKTOP VIEW
===================== */
@media (min-width: 768px) {
  .container {
    max-width: 520px;
  }

  .athletic-bg {
    top: 140px;
    right: -120px;
    width: 520px;
    opacity: 0.35;
  }

  .title .main {
    font-size: 38px;
  }
}

/* =====================
   MOBILE VIEW
===================== */
@media (max-width: 480px) {
  .container {
    padding: 16px;
  }

  .athletic-bg {
    top: 90px;
    right: -190px;
    width: 300px;
    opacity: 0.22;
  }

  .title .main {
    font-size: 34px;
  }
}
