/* =============================================
   SOMMER I BERGEN – Hovedstil v4
   - Sommer_i_Bergen.png = bakgrunn (alltid)
   - Ball.png = transparent sticker, flytende
   - Konsistent designmal på alle sider
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --orange:      #E8621A;
  --orange2:     #F5A623;
  --yellow:      #F5C842;
  --blue:        #1A7FE8;
  --blue2:       #00C2FF;
  --teal:        #00BFA5;
  --dark:        #0E0E18;
  --dark2:       #181825;
  --ink:         #0D0D0D;
  --white:       #FFFFFF;
  --offwhite:    #F8F5EF;
  --border:      #E0DBD4;
  --text:        #1A1A28;
  --muted:       #6B6B80;
  --grad-orange: linear-gradient(135deg, #E8621A 0%, #F5C842 100%);
  --grad-blue:   linear-gradient(135deg, #1A7FE8 0%, #00C2FF 100%);
  --grad-logo:   linear-gradient(180deg, #00C2FF 0%, #1A7FE8 35%, #E8621A 70%, #F5A623 100%);
  --radius:    14px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  /* Mørk basisbakgrunn – logoen legges over som gjennomsiktig dekor */
  background-color: var(--dark);
  min-height: 100vh;
}

/* =============================================
   GLOBAL BAKGRUNNSLOGO (Sommer_i_Bergen.png)
   Vises på ALLE sider – transparent PNG flyter
   over den mørke bakgrunnen.
   På forsiden: stor og synlig
   På undersider: liten og nedtonet øverst til høyre
   ============================================= */

.site-bg-logo { display: none; }

/* Forsiden: Sommer_i_Bergen.png som CSS background, strengt skalert */
.page-home {
  background-image: url('/assets/Sommer_i_Bergen.png');
  background-repeat: no-repeat;
  background-position: center 60px;
  background-size: min(680px, 90vw) auto;
}

/* Undersider: liten nedtonet watermark via pseudo-element */
.page-inner::after {
  content: '';
  position: fixed;
  top: 70px;
  right: -10px;
  width: 220px;
  height: 160px;
  background-image: url('/assets/Sommer_i_Bergen.png');
  background-size: 220px auto;
  background-repeat: no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* Mørk gradient-maske over bakgrunnen (kun forside) */
.page-home::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,14,24,0.20) 0%,
    rgba(14,14,24,0.50) 50%,
    rgba(14,14,24,0.90) 78%,
    rgba(14,14,24,0.99) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Sørg for at alt innhold er OVER bakgrunnen */
.nav, .hero-content, .section, footer,
.page-hero, main { position: relative; z-index: 2; }

/* =============================================
   NAV
   ============================================= */
.nav {
  background: rgba(14,14,24,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(232,98,26,0.5);
  height: 60px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Bangers', cursive;
  font-size: 20px;
  letter-spacing: 3px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; }
.nav-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 0 0.85rem;
  height: 60px;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover  { color: #fff; border-bottom-color: rgba(245,168,35,0.6); }
.nav-link.active { color: var(--yellow); border-bottom-color: var(--yellow); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 2px; }

/* =============================================
   HERO (kun forsiden)
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-top: 60px; /* nav */
  z-index: 2;
}
.hero-content {
  width: 100%;
  max-width: 700px;
  text-align: center;
  padding: 0 1.5rem 5rem;
}
.hero-date {
  display: inline-block;
  background: var(--grad-orange);
  color: var(--ink);
  font-family: 'Bangers', cursive;
  font-size: 18px;
  letter-spacing: 3px;
  padding: 5px 22px;
  border-radius: 30px;
  border: 3px solid var(--ink);
  margin-bottom: 1rem;
  box-shadow: 4px 4px 0 var(--ink);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================================
   STICKER (Ball.png)
   Transparent PNG som "flyter" over innholdet.
   position:fixed så den alltid er synlig.
   ============================================= */
.sticker-ball {
  position: fixed;
  z-index: 900;
  pointer-events: none;
  width: 120px;          /* Fast, liten størrelse */
  height: 120px;
  bottom: 1.5rem;
  right: 1.5rem;
  animation: stickerFloat 4s ease-in-out infinite;
  filter: drop-shadow(2px 4px 10px rgba(0,0,0,0.35));
}
.sticker-ball img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@keyframes stickerFloat {
  0%,100% { transform: rotate(-5deg) translateY(0px); }
  33%      { transform: rotate(4deg)  translateY(-8px); }
  66%      { transform: rotate(-2deg) translateY(-4px); }
}

/* =============================================
   PAGE HERO – Underside-topper (konsistent mal)
   ============================================= */
.page-hero {
  padding-top: calc(60px + 3.5rem);
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
  border-bottom: 3px solid rgba(255,255,255,0.06);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-orange);
}
.page-hero h1 {
  font-family: 'Bangers', cursive;
  font-size: clamp(52px, 10vw, 92px);
  color: #fff;
  letter-spacing: 4px;
  line-height: 0.95;
  text-shadow: 3px 3px 0 var(--ink), 0 0 40px rgba(232,98,26,0.3);
}
.page-hero h1 .accent { color: var(--yellow); }
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-top: 0.9rem;
  font-weight: 700;
}

/* =============================================
   INNHOLDSBAKGRUNN – hvit/lys boks under hero
   Konsistent på alle undersider
   ============================================= */
.content-wrap {
  background: var(--offwhite);
  position: relative;
  z-index: 2;
  border-top: 3px solid var(--ink);
}

/* =============================================
   SECTION
   ============================================= */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  position: relative;
  z-index: 2;
}
.section-title {
  font-family: 'Bangers', cursive;
  font-size: 44px;
  letter-spacing: 3px;
  color: var(--dark);
  margin-bottom: 0.2rem;
  line-height: 1;
}
.section-title .grad {
  background: var(--grad-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.divider {
  width: 56px; height: 5px;
  background: var(--grad-orange);
  border-radius: 3px;
  margin-bottom: 2rem;
  border: 2px solid var(--ink);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-family: 'Bangers', cursive;
  font-size: 19px;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: 3px solid var(--ink);
  text-decoration: none;
  transition: all 0.15s;
  line-height: 1;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn:hover  { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px,2px);   box-shadow: 2px 2px 0 var(--ink); }
.btn-primary { background: var(--grad-orange); color: var(--ink); }
.btn-blue    { background: var(--grad-blue);   color: #fff; }
.btn-dark    { background: var(--dark);        color: #fff; }
.btn-white   { background: #fff;               color: var(--ink); }
.btn-outline-light {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.25);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.18); border-color: #fff; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-sm   { padding: 7px 14px; font-size: 16px; box-shadow: 3px 3px 0 var(--ink); }
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   BADGES
   ============================================= */
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.badge {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px;
  border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.badge-o { background: var(--orange); color: #fff; }
.badge-b { background: var(--blue);   color: #fff; }
.badge-y { background: var(--yellow); color: var(--ink); }
.badge-t { background: var(--teal);   color: #fff; }

/* =============================================
   CARDS
   ============================================= */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 3px solid var(--ink);
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.card-accent { height: 6px; width: 100%; }
.card-accent-orange { background: var(--grad-orange); }
.card-accent-blue   { background: var(--grad-blue); }
.card-accent-teal   { background: linear-gradient(90deg, var(--teal), #69F0AE); }
.card-accent-yellow { background: linear-gradient(90deg, var(--yellow), #FFE57F); }
.card-header {
  padding: 1.1rem 1.4rem 0.9rem;
  border-bottom: 2px solid var(--border);
  display: flex; align-items: flex-start; gap: 12px;
}
.card-icon { font-size: 28px; line-height: 1; }
.card-title { font-family: 'Bangers', cursive; font-size: 22px; letter-spacing: 1.5px; line-height: 1.1; color: var(--dark); }
.card-subtitle { font-size: 13px; color: var(--muted); margin-top: 2px; font-weight: 600; }
.card-body { padding: 1.1rem 1.4rem 1.4rem; }
.info-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.info-list li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.info-list .lbl { font-weight: 800; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.4px; min-width: 70px; padding-top: 2px; }
.info-list .val { color: var(--text); font-weight: 600; }

/* SPOTS */
.spots-wrap { margin-top: 1rem; }
.spots-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-bottom: 5px; font-weight: 700; }
.spots-bar { background: #e8e4de; border-radius: 6px; height: 11px; overflow: hidden; border: 2px solid var(--ink); }
.spots-fill { height: 100%; border-radius: 4px; transition: width 0.6s ease; }
.fill-orange { background: var(--grad-orange); }
.fill-blue   { background: var(--grad-blue); }
.fill-full   { background: #e74c3c; }

/* NOTICE */
.notice { padding: 0.8rem 1rem; border-radius: var(--radius-sm); font-size: 14px; line-height: 1.5; margin-top: 1rem; border: 2px solid; font-weight: 600; }
.notice-warning { background: #FFFBE6; color: #8B6914; border-color: var(--yellow); }
.notice-info    { background: #E8F4FF; color: #1255A0; border-color: var(--blue2); }
.notice-success { background: #E8FAF0; color: #1A7A4A; border-color: var(--teal); }
.notice-danger  { background: #FFF0EE; color: #C62828; border-color: #e74c3c; }

/* TAGS */
.tag { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; border: 2px solid var(--ink); }
.tag-herrer    { background: var(--orange); color: #fff; }
.tag-damer     { background: var(--blue);   color: #fff; }
.tag-bekreftet { background: var(--teal);   color: #fff; }
.tag-venter    { background: var(--yellow); color: var(--ink); }
.tag-venteliste{ background: #9C6ADE;       color: #fff; }
.tag-avvist    { background: #e74c3c;       color: #fff; }

/* ALERTS */
.alert { padding: 0.9rem 1.1rem; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: 10px; font-weight: 700; border: 2px solid; }
.alert-success { background: #E8FAF0; color: #1A7A4A; border-color: var(--teal); }
.alert-error   { background: #FFF0EE; color: #C62828; border-color: #e74c3c; }
.alert-info    { background: #E8F4FF; color: #1255A0; border-color: var(--blue); }

/* LIVE */
.live-section { background: var(--dark2); border-radius: var(--radius); padding: 2rem; margin-top: 2.5rem; border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); position: relative; overflow: hidden; }
.live-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-orange); }
.live-header { display: flex; align-items: center; gap: 10px; margin-bottom: 1.25rem; }
.live-dot { width: 11px; height: 11px; background: #e74c3c; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.live-label { font-family: 'Bangers', cursive; font-size: 20px; color: #fff; letter-spacing: 2px; }
.live-count { font-size: 12px; color: rgba(255,255,255,0.4); margin-left: auto; font-weight: 700; }
.live-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 10px; }
.live-card { background: rgba(255,255,255,0.06); border-radius: 10px; padding: 11px 13px; border: 1.5px solid rgba(255,255,255,0.09); }
.live-tname { font-weight: 800; color: #fff; font-size: 14px; }
.live-cat   { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; text-transform: uppercase; }

/* SCHEDULE */
.schedule-tabs { display: flex; gap: 10px; margin-bottom: 2rem; flex-wrap: wrap; }
.sched-tab { padding: 8px 20px; border-radius: 30px; font-family: 'Bangers', cursive; font-size: 17px; letter-spacing: 1px; cursor: pointer; border: 2.5px solid var(--ink); background: var(--white); color: var(--text); box-shadow: 3px 3px 0 var(--ink); transition: all 0.15s; }
.sched-tab:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); }
.sched-tab.active { background: var(--dark); color: var(--yellow); }
.schedule-panel { display: none; }
.schedule-panel.active { display: block; }
.pulje-header { font-family: 'Bangers', cursive; font-size: 22px; letter-spacing: 1.5px; margin-bottom: 1rem; color: var(--orange); }
.pulje-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 1rem; margin-bottom: 2.5rem; }
.pulje-box { background: var(--white); border-radius: 10px; padding: 1rem; border: 2.5px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.pulje-name { font-family: 'Bangers', cursive; font-size: 18px; margin-bottom: 8px; letter-spacing: 1px; }
.pulje-team { background: var(--offwhite); border-radius: 6px; padding: 7px 10px; font-size: 13px; margin-bottom: 4px; border: 1.5px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-weight: 700; }
.pulje-seed { font-size: 11px; color: var(--muted); }
.rounds { display: flex; flex-direction: column; gap: 2rem; }
.round-title { font-family: 'Bangers', cursive; font-size: 21px; letter-spacing: 1.5px; color: var(--orange); margin-bottom: 8px; }
.match { background: var(--white); border-radius: 10px; padding: 12px 16px; border: 2.5px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); display: flex; align-items: center; gap: 12px; margin-bottom: 6px; transition: transform 0.15s, box-shadow 0.15s; }
.match:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.match-time { font-size: 12px; color: var(--muted); min-width: 50px; font-weight: 800; }
.match-teams { flex: 1; display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 14px; }
.match-vs { color: var(--border); font-size: 11px; }
.match-bane { font-size: 11px; color: var(--muted); background: var(--offwhite); padding: 4px 10px; border-radius: 20px; white-space: nowrap; border: 1.5px solid var(--border); font-weight: 700; }
.match-finale { border-color: var(--orange); background: #FFF8F0; }

/* FORMS */
.form-wrap { background: var(--white); border-radius: var(--radius); border: 3px solid var(--ink); padding: 2rem; box-shadow: 6px 6px 0 var(--ink); }
.form-tabs { display: flex; border: 3px solid var(--ink); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 2rem; }
.form-tab { flex: 1; padding: 11px 8px; text-align: center; cursor: pointer; font-family: 'Bangers', cursive; font-size: 18px; letter-spacing: 1px; background: var(--offwhite); color: var(--muted); border: none; border-right: 2px solid var(--ink); transition: all 0.2s; }
.form-tab:last-child { border-right: none; }
.form-tab.active { background: var(--orange); color: #fff; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 11px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { padding: 10px 13px; border: 2.5px solid var(--ink); border-radius: var(--radius-sm); font-size: 14px; font-family: 'Nunito', sans-serif; font-weight: 600; color: var(--text); background: var(--white); width: 100%; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus { border-color: var(--orange); }
.player-section { margin-top: 1.5rem; }
.player-section-label { font-size: 11px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.player-row { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.player-num { background: var(--grad-orange); color: var(--ink); border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; flex-shrink: 0; border: 2px solid var(--ink); }
.player-row input { flex: 1; }
.btn-remove-player { background: #e74c3c; color: #fff; border: 2px solid var(--ink); border-radius: 50%; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; font-weight: 900; flex-shrink: 0; line-height: 1; }
.btn-add-player { background: none; border: 2.5px dashed var(--border); color: var(--muted); border-radius: var(--radius-sm); padding: 9px; width: 100%; cursor: pointer; font-size: 14px; font-weight: 700; font-family: 'Nunito', sans-serif; margin-top: 4px; transition: all 0.2s; }
.btn-add-player:hover { border-color: var(--orange); color: var(--orange); }
.btn-submit { background: var(--grad-orange); color: var(--ink); border: 3px solid var(--ink); border-radius: var(--radius-sm); padding: 14px; font-family: 'Bangers', cursive; font-size: 22px; letter-spacing: 2px; cursor: pointer; width: 100%; margin-top: 1.5rem; box-shadow: 5px 5px 0 var(--ink); transition: all 0.15s; }
.btn-submit:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.btn-submit-kotc { background: var(--yellow); }

/* TEAMS */
.teams-section { margin-top: 2.5rem; }
.teams-section-title { font-family: 'Bangers', cursive; font-size: 30px; letter-spacing: 2px; margin-bottom: 1rem; }
.teams-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
.team-card { background: var(--white); border-radius: 10px; padding: 1rem; border: 2.5px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); display: flex; flex-direction: column; gap: 5px; }
.team-name { font-weight: 900; font-size: 15px; }
.team-players { font-size: 12px; color: var(--muted); font-weight: 700; }

/* AKTIVITETER */
.activity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(285px, 1fr)); gap: 2rem; }
.activity-card { background: var(--white); border-radius: var(--radius); border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); overflow: hidden; transition: transform 0.15s, box-shadow 0.15s; }
.activity-card:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.activity-img-placeholder { background: linear-gradient(135deg, #111118 0%, #1C1C28 100%); width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 60px; border-bottom: 3px solid var(--ink); }
.activity-body { padding: 1.25rem 1.5rem 1.5rem; }
.activity-title { font-family: 'Bangers', cursive; font-size: 26px; letter-spacing: 1.5px; margin-bottom: 0.5rem; }
.activity-desc { font-size: 14px; color: var(--muted); line-height: 1.6; font-weight: 600; }
.activity-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 1rem; }

/* PRESENTASJONER */
.presenter-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(225px, 1fr)); gap: 1.5rem; }
.presenter-card { background: var(--white); border-radius: var(--radius); border: 3px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); padding: 1.5rem; text-align: center; transition: transform 0.15s, box-shadow 0.15s; }
.presenter-card:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.presenter-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--grad-logo); border: 3px solid var(--ink); display: flex; align-items: center; justify-content: center; font-size: 36px; margin: 0 auto 1rem; }
.presenter-name { font-family: 'Bangers', cursive; font-size: 22px; letter-spacing: 1px; }
.presenter-role { font-size: 13px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.presenter-bio { font-size: 14px; color: var(--text); margin-top: 0.75rem; line-height: 1.5; font-weight: 600; }
.presenter-time { display: inline-block; margin-top: 1rem; background: var(--yellow); color: var(--ink); font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 20px; border: 2px solid var(--ink); }

/* FOOTER */
.footer {
  background: rgba(10,10,18,0.97);
  padding: 3rem 1.5rem 2rem;
  border-top: 3px solid var(--orange);
  position: relative;
  z-index: 2;
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; text-align: center; }
.footer-logo img { height: 44px; width: auto; opacity: 0.9; }
.footer-info { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 700; }
.footer-info span { display: flex; align-items: center; gap: 6px; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.2s; }
.footer-nav a:hover { color: var(--yellow); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.18); font-weight: 600; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute; top: 60px; left: 0; right: 0;
    background: rgba(14,14,24,0.97);
    flex-direction: column;
    padding: 0.5rem 0 1rem;
    border-bottom: 2px solid var(--orange);
  }
  .nav-links.open { display: flex; }
  .nav-link { height: auto; padding: 12px 1.5rem; border-bottom: none; border-left: 3px solid transparent; }
  .nav-link.active { border-left-color: var(--yellow); }
  .nav-toggle { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .section { padding: 2rem 1rem; }
  .form-wrap { padding: 1.25rem; }
  .sticker-ball { width: 80px; height: 80px; bottom: 1rem; right: 1rem; }
  /* bg handled via CSS background-image */
  .map-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .badge-row { gap: 6px; }
  .section-title { font-size: 34px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .sticker-ball { width: 65px; height: 65px; }
}

.text-center { text-align: center; }
.mt-1{margin-top:.5rem} .mt-2{margin-top:1rem} .mt-3{margin-top:1.5rem} .mt-4{margin-top:2rem}
.mb-2{margin-bottom:1rem} .empty-state{text-align:center;padding:3rem;color:var(--muted);font-size:15px;font-weight:700}
