:root {
  --bg: #f5cb89;
  --card: #ffffff;
  --text: #1c1c28;
  --muted: #4a4a5a;
  --radius: 18px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  padding: 18px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 36px;
  width: auto;
}

.brand-mark {
  height: 36px;
  width: auto;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.nav-links.open {
  display: flex;
    background: linear-gradient(135deg, #f9f9f9, #ffefef);
    padding: 14px;
    border-radius: 10px;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.nav-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
}

.btn-offer {
  background: linear-gradient(135deg, #040069, #640098);
  color: #fff;
}

.btn-vote {
  background: linear-gradient(135deg, #b6cd1b, #a9af0f);
  color: whitesmoke;
  text-transform: uppercase;
}

.btn-twitch {
  background: linear-gradient(135deg, #451093, #0e0e10);
  color: #fff;
}

.btn-vp {
  background: #281e1e;
  color: #000;
}

.icon-btn {
  padding: 10px 14px;
}

.nav-button img {
  height: 28px;
  width: auto;
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-height: 25vh;
  position: relative;
}

.hero-visual {
  padding: 10px;
  display: grid;
  place-items: center;
  transform-origin: center top;
  will-change: transform;
  backface-visibility: hidden;
}

.timeboard {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1100px;
  margin: -80px auto 0;
  background: linear-gradient(135deg, #f9f9f9, #e5e5ef);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  z-index: 2;
}

.clock-row,
.timeboard {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: center;
}

.clock {
  flex: 1 1 160px;
  min-width: 160px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  padding: 10px 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.clock-label {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 13px;
}

.clock-time {
  font-variant-numeric: tabular-nums;
  font-size: 20px;
  font-weight: 700;
  margin-top: 4px;
}

.clock-date {
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-section {
  margin: 18px 0;
}

.map-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: -20px auto 0 auto;
  /*border-radius: var(--radius);*/
  overflow: hidden;
/*  box-shadow: var(--shadow);
  background: #fff;*/
}

.map-wrapper img {
  width: 100%;
  display: block;
  height: auto;
}

.offer-section {
  display: flex;
  justify-content: center;
  margin: 18px 0;
}

.offer-surface {
  width: 90%;
  background: url("../../images/Pelikaani-bg-spiral.svg") center/cover no-repeat;
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.offer-logo {
  background: linear-gradient(135deg, #040069, #640098);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  place-items: center;
  min-height: 120px;
}

.offer-logo img {
  width: 80%;
  max-width: 220px;
  height: auto;
}

.offer-copy {
  background: linear-gradient(135deg, #f9f9f9, #e5e5ef);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.offer-copy h2 {
  font-size: 22px;
  line-height: 1.3;
}

.offer-copy p {
  color: var(--muted);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ff7b00;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(255, 123, 0, 0.35);
  width: fit-content;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.placeholder {
  margin: 18px 0;
}

.placeholder h2 {
  margin-bottom: 8px;
}

.vote-list {
  list-style: circle;
  padding: 0;
  margin-left: 18px;
}

.join-vote {
  font-weight: 700;
  color: #0dac0d;
}

.join-vote:hover {
  text-decoration: underline;
  color: #0f8f0f;
}

.footer {
  margin-top: 32px;
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  font-weight: 600;
}

.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  body {
    padding: 26px 32px 48px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    width: auto;
  }

  .hero {
    min-height: 60vh;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 100vh;
    grid-template-columns: 1fr 1fr;
  }

  .offer-surface {
    grid-template-columns: 0.35fr 0.65fr;
    align-items: stretch;
  }

  .offer-logo {
    min-height: 220px;
  }
}
