﻿@font-face {
  font-family: "Dynamo Bold";
  src:
    local("Dynamo Bold"),
    local("Dynamo-Bold"),
    url("/public/fonts/DynamoBold.woff2") format("woff2"),
    url("/public/fonts/DynamoBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-heading: "Dynamo Bold", "Baloo 2", sans-serif;
  --font-body: "Outfit", sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: #e8a7ec;
  color: #1a1a1a;
}

.topbar {
  background: #f1b90b;
  border-bottom: 2px solid #111;
  animation: slideDown .45s ease-out both;
}

.topbar-inner {
  width: min(1120px, 94vw);
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  text-decoration: none;
  color: #111;
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
}

.brand span { color: #ff5d5d; }

.actions { display: flex; gap: 8px; }

.btn {
  border: 2px solid #111;
  border-radius: 10px;
  padding: 9px 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn.light { background: #fff; color: #111; }
.btn.dark { background: #111; color: #fff; }

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.14);
}

.container {
  width: min(1120px, 94vw);
  margin: 0 auto;
  padding: 30px 0 50px;
}

.head h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 76px);
  line-height: .92;
  color: #efefef;
  -webkit-text-stroke: 2px #1f1f1f;
  animation: fadeUp .55s ease-out .08s both;
}

.head p {
  margin: 8px 0 0;
  font-size: clamp(16px, 1.4vw, 22px);
}

.stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  animation: fadeUp .6s ease-out .14s both;
}

.card {
  background: #fff;
  border: 2px solid #111;
  border-radius: 12px;
  padding: 12px;
  transition: transform .16s ease, box-shadow .16s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
}

.card .k {
  display: block;
  color: #666;
  font-size: 13px;
}

.card .v {
  display: block;
  margin-top: 3px;
  font-size: 18px;
  font-weight: 700;
}

@keyframes slideDown {
  from { transform: translateY(-8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeUp {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 880px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .topbar-inner { min-height: 74px; }
  .btn { font-size: 13px; padding: 7px 9px; }
  .stats { grid-template-columns: 1fr; }
}
