:root
{
  --bg-1: #06101b;
  --bg-2: #0b1f33;
  --card: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.14);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --soft: rgba(255, 255, 255, 0.55);
  --accent: #7dd3fc;
  --shadow: rgba(0, 0, 0, 0.45);
}

*
{
  box-sizing: border-box;
}

html,
body
{
  height: 100%;
}

body
{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1400px 900px at 20% 20%, var(--bg-2), var(--bg-1));
  overflow: hidden;
}

.screen
{
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 2.5vh 3vw;
}

.card
{
  width: 100%;
  height: 100%;
  max-width: 2600px;
  max-height: 1400px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 30px 80px var(--shadow);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 3.2vh 3vw;
  gap: 2.2vh;
}

.top
{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2vw;
}

.club__name
{
  font-size: clamp(30px, 3.2vw, 64px);
  font-weight: 900;
  letter-spacing: 0.2px;
}

/* NEW: club name link styling (no underline) */
.club__link
{
  color: inherit;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.club__link:visited
{
  color: inherit;
  text-decoration: none;
}

.club__link:hover
{
  color: inherit;
  text-decoration: none;
}

.club__link:active
{
  color: inherit;
  text-decoration: none;
}

.club__subtitle
{
  margin-top: 0.6vh;
  font-size: clamp(16px, 1.6vw, 28px);
  color: var(--muted);
}

.clock
{
  text-align: right;
}

.clock__time
{
  font-size: clamp(30px, 3.0vw, 60px);
  font-weight: 900;
}

.clock__date
{
  margin-top: 0.4vh;
  font-size: clamp(14px, 1.3vw, 22px);
  color: var(--muted);
}

.content
{
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 2.0vh;
  align-items: center;
}

.badgeRow
{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.badge
{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.16);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 800;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.86);
}

.sponsor
{
  display: grid;
  grid-template-columns: minmax(360px, 42%) 1fr;
  align-items: center;
  gap: 3.2vw;
  height: 100%;
}

.sponsor__logoWrap
{
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  display: grid;
  place-items: center;
  padding: 3vh 3vw;
}

.sponsor__logo
{
  max-width: 100%;
  max-height: 56vh;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.35));
}

.sponsor__text
{
  display: block;
}

.sponsor__titleRow
{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 22px;
}

.sponsor__titleLeft
{
  display: grid;
  align-content: start;
  gap: 0.8vh;
}

.sponsor__name
{
  font-size: clamp(34px, 3.8vw, 84px);
  font-weight: 950;
  line-height: 1.05;
}

.sponsor__tagline
{
  margin: 0;
  font-size: clamp(20px, 2.2vw, 42px);
  font-weight: 850;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.15;
  max-width: 52ch;
}

.sponsor__qrWrap
{
  display: none;
  place-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.14);
}

.sponsor__qr
{
  width: clamp(200px, 16vw, 360px);
  height: clamp(200px, 16vw, 360px);
  object-fit: contain;
  border-radius: 14px;
}

.sponsor__qrHint
{
  font-size: clamp(12px, 1.1vw, 18px);
  font-weight: 800;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

.sponsor__cta
{
  margin-top: 2.2vh;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.12);
}

.sponsor__ctaLabel
{
  color: var(--soft);
  font-size: clamp(14px, 1.2vw, 22px);
}

.sponsor__ctaValue
{
  font-size: clamp(16px, 1.3vw, 24px);
  font-weight: 800;
  color: var(--accent);
}

.contact
{
  margin-top: 2.0vh;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.12);
}

.contact__title
{
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 12px;
}

.contact__grid
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

.contact__item
{
  display: grid;
  gap: 4px;
}

.contact__label
{
  font-size: clamp(12px, 1.0vw, 16px);
  color: rgba(255, 255, 255, 0.55);
}

.contact__value
{
  font-size: clamp(16px, 1.5vw, 26px);
  font-weight: 900;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.92);
}

.contact__value--accent
{
  color: var(--accent);
}

.bottom
{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2vw;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 1.8vh;
}

.ticker
{
  font-size: clamp(14px, 1.2vw, 20px);
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hint
{
  font-size: clamp(12px, 1.0vw, 16px);
  color: rgba(255, 255, 255, 0.40);
  text-align: right;
}

.fade
{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.0);
  pointer-events: none;
  opacity: 0;
  transition: opacity 380ms ease;
}

.fade.is-on
{
  opacity: 1;
  background: rgba(0, 0, 0, 0.28);
}

@media (max-width: 1100px)
{
  .card
  {
    padding: 2.6vh 2.6vw;
    border-radius: 22px;
  }

  .sponsor
  {
    grid-template-columns: 1fr;
    gap: 2.2vh;
  }

  .clock
  {
    display: none;
  }

  .bottom
  {
    grid-template-columns: 1fr;
  }

  .hint
  {
    text-align: left;
  }

  .contact__grid
  {
    grid-template-columns: 1fr;
  }

  .sponsor__titleRow
  {
    grid-template-columns: 1fr;
  }

  .sponsor__qrWrap
  {
    justify-self: start;
  }
}
