:root {
  --bg-1: #ccecff;
  --bg-2: #eef9ff;
  --bg-3: #f7fcf7;
  --bg-4: #f4faf4;
  --green: #059669;
  --green-hover: #10b981;
  --sky-bg: #f0f9ff;
  --sky-border: #bae6fd;
  --sky-text: #075985;
  --shop-bg: #fffbeb;
  --shop-border: #fde68a;
  --shop-text: #92400e;
  --card-border: rgba(255, 255, 255, 0.8);
  --card-bg: rgba(255, 255, 255, 0.9);
  --text: #0f172a;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 30%, var(--bg-3) 65%, var(--bg-4) 100%);
}

.topbar {
  height: 8px;
  width: 100%;
  background: linear-gradient(90deg, #4ade80 0%, #22c55e 50%, #4ade80 100%);
}

.page {
  min-height: calc(100vh - 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.hero-card {
  width: min(100%, 960px);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  border-radius: 32px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(10px);
}

.logo-wrap {
  margin: 0 auto 32px;
  max-width: 760px;
  border: 1px solid #d1fae5;
  border-radius: 24px;
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfeff 100%);
  padding: 16px;
}

.logo {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  height: auto;
}

.button-row {
  width: min(100%, 720px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shop-row {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 18px;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 28px rgba(5, 150, 105, 0.2);
}

.btn-primary:hover {
  background: var(--green-hover);
}

.btn-secondary {
  background: var(--sky-bg);
  border-color: var(--sky-border);
  color: var(--sky-text);
}

.btn-secondary:hover {
  background: #e0f2fe;
}

.btn-shop {
  min-height: 44px;
  padding: 0 22px;
  font-size: 14px;
  background: var(--shop-bg);
  border-color: var(--shop-border);
  color: var(--shop-text);
}

.btn-shop:hover {
  background: #fef3c7;
}

@media (min-width: 640px) {
  .hero-card {
    padding: 40px;
  }

  .button-row {
    flex-direction: row;
  }

  .button-row .btn {
    flex: 1;
  }
}

@media (max-width: 639px) {
  .hero-card {
    border-radius: 24px;
    padding: 22px;
  }

  .logo-wrap {
    margin-bottom: 24px;
    border-radius: 20px;
  }

  .btn {
    width: 100%;
  }
}


.site-footer {
  padding: 22px 20px 26px;
  border-top: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
}

.footer-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  color: #334155;
  font-size: 14px;
}

.footer-brand strong {
  color: #0f172a;
  font-size: 15px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
}

.footer-nav a {
  color: #475569;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.footer-nav a:hover {
  color: #059669;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
}

.cookie-banner__inner {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 22px;
  background: rgba(15,23,42,0.94);
  color: white;
  box-shadow: 0 20px 60px rgba(15,23,42,0.22);
}

.cookie-banner__text strong {
  display: block;
  margin-bottom: 6px;
}

.cookie-banner__text p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  font-size: 14px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn-primary {
  background: #22c55e;
  color: white;
}

.cookie-btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.15);
}

@media (min-width: 860px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
  }

  .footer-brand {
    text-align: left;
  }

  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner__actions {
    justify-content: flex-end;
  }
}
