/* ============================
   PlayPass — Design System
   ============================ */

:root {
  /* Brand */
  --brand: #FF6B4A;
  --brand-dark: #E8542F;
  --brand-light: #FFE4DA;
  --teal: #21BFB0;
  --teal-dark: #189489;
  --yellow: #FFC94A;
  --cream: #FFF8F0;

  /* Category colors */
  --cat-sport: #2FBF71;
  --cat-sport-bg: #E4F8ED;
  --cat-arts: #FF5FA0;
  --cat-arts-bg: #FFE7F2;
  --cat-stem: #4A90E2;
  --cat-stem-bg: #E7F0FC;
  --cat-camp: #FF9F40;
  --cat-camp-bg: #FFF1E0;

  /* Neutrals */
  --ink: #2B2620;
  --ink-soft: #6B6259;
  --line: #F0E4D8;
  --white: #FFFFFF;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(43, 38, 32, 0.06);
  --shadow-md: 0 8px 24px rgba(43, 38, 32, 0.10);
  --shadow-lg: 0 16px 40px rgba(43, 38, 32, 0.14);

  --font-head: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px;
}

h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(26px, 3.4vw, 36px); }
h3 { font-size: 20px; }

p { margin: 0 0 12px; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 64px 24px; max-width: 1180px; margin: 0 auto; }
.section-tight { padding: 32px 24px; max-width: 1180px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand-dark);
  background: var(--brand-light);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head p { font-size: 16px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--brand); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-dark); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--white); color: var(--ink); border: 2px solid var(--line); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand-dark); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

/* ============ Header ============ */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); box-shadow: var(--shadow-sm); }
.announce-bar {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
}
.announce-bar strong { color: var(--yellow); }

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 22px; font-weight: 600; color: var(--ink); flex-shrink: 0; }
.logo-mark { flex-shrink: 0; }
.logo-play { color: var(--brand); }

.main-nav { display: flex; gap: 28px; font-weight: 600; font-size: 15px; }
.main-nav a { color: var(--ink-soft); padding: 6px 0; border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s; }
.main-nav a:hover, .main-nav a.active { color: var(--brand-dark); border-color: var(--brand); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn { position: relative; font-size: 20px; display: inline-flex; }
.cart-count {
  position: absolute; top: -6px; right: -10px;
  background: var(--brand); color: var(--white);
  font-size: 10px; font-weight: 700; font-family: var(--font-body);
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; }
.mobile-nav { display: none; flex-direction: column; padding: 8px 24px 18px; border-top: 1px solid var(--line); }
.mobile-nav a { padding: 10px 0; font-weight: 600; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: none; }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-block; }
  .mobile-nav.open { display: flex; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  background: linear-gradient(180deg, #FFF3E9 0%, var(--cream) 100%);
  overflow: hidden;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy .highlight { color: var(--brand); position: relative; }
.hero-copy .lead { font-size: 17px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

.hero-art { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-blob {
  width: 100%; max-width: 380px; aspect-ratio: 1;
  background: var(--brand-light);
  border-radius: 42% 58% 55% 45% / 45% 40% 60% 55%;
  display: flex; align-items: center; justify-content: center;
  font-size: 110px;
  position: relative;
}
.hero-badges { position: absolute; inset: 0; }
.float-badge {
  position: absolute;
  background: var(--white);
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-head);
  white-space: nowrap;
}
.float-badge.b1 { top: 8%; left: -6%; }
.float-badge.b2 { bottom: 12%; right: -8%; }
.float-badge.b3 { top: 46%; right: -14%; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .lead { margin: 0 auto 12px; }
  .hero-actions { justify-content: center; }
  .hero-art { margin-top: 20px; }
  .float-badge.b1 { left: 0; }
  .float-badge.b2 { right: 0; }
  .float-badge.b3 { display: none; }
}

/* ============ Trust strip ============ */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.trust-item { text-align: center; }
.trust-item .icon { font-size: 30px; margin-bottom: 8px; }
.trust-item h4 { font-family: var(--font-head); font-size: 15px; margin-bottom: 4px; }
.trust-item p { font-size: 13px; margin: 0; }
@media (max-width: 760px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }

/* ============ Age group grid ============ */
.age-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.age-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.age-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.age-card .icon { font-size: 40px; margin-bottom: 10px; }
.age-card h3 { margin-bottom: 2px; }
.age-card span { font-size: 13px; color: var(--ink-soft); font-weight: 600; }
@media (max-width: 760px) { .age-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ Category grid ============ */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card {
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.category-card .icon { font-size: 38px; margin-bottom: 10px; }
.category-card h3 { margin-bottom: 2px; }
.category-card span { font-size: 13px; font-weight: 600; opacity: 0.75; }
.cat-sport { background: var(--cat-sport-bg); color: var(--cat-sport); }
.cat-arts { background: var(--cat-arts-bg); color: var(--cat-arts); }
.cat-stem { background: var(--cat-stem-bg); color: var(--cat-stem); }
.cat-camp { background: var(--cat-camp-bg); color: var(--cat-camp); }
.category-card h3, .category-card span { color: var(--ink); }
@media (max-width: 760px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ Club cards ============ */
.club-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1020px) { .club-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .club-grid { grid-template-columns: 1fr; } }

.club-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
}
.club-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.club-thumb {
  position: relative;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.club-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  padding: 4px 11px; border-radius: var(--radius-pill);
  background: var(--white); color: var(--ink);
}
.tag-popular { background: var(--yellow); color: var(--ink); }
.tag-new { background: var(--teal); color: var(--white); }
.club-age-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(43,38,32,0.72); color: var(--white);
  font-size: 11px; font-weight: 700; font-family: var(--font-head);
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.club-info { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.club-cat { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 4px; }
.club-name { font-family: var(--font-head); font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.club-meta { font-size: 13px; color: var(--ink-soft); margin-bottom: 12px; display: flex; flex-direction: column; gap: 3px; }
.club-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.club-price { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--ink); }
.club-price span { font-size: 12px; font-weight: 600; color: var(--ink-soft); }

/* ============ Filters ============ */
.filters-bar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 18px; box-shadow: var(--shadow-sm); margin-bottom: 32px;
}
.filter-group { display: flex; flex-direction: column; gap: 4px; }
.filter-group label { font-size: 12px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.03em; }
.filter-select, .filter-input {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  padding: 9px 12px; border-radius: var(--radius-sm); border: 2px solid var(--line);
  background: var(--cream); color: var(--ink); min-width: 150px;
}
.filter-select:focus, .filter-input:focus { outline: none; border-color: var(--brand); }
.filter-count { margin-left: auto; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.chip {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: var(--radius-pill);
  background: var(--white); border: 2px solid var(--line); cursor: pointer;
  transition: all 0.15s ease;
}
.chip.active, .chip:hover { border-color: var(--brand); color: var(--brand-dark); background: var(--brand-light); }
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.empty-state .icon { font-size: 48px; margin-bottom: 12px; }

/* ============ Club detail ============ */
.club-detail { display: grid; grid-template-columns: 1fr 380px; gap: 44px; align-items: start; }
@media (max-width: 900px) { .club-detail { grid-template-columns: 1fr; } }
.club-hero-thumb {
  aspect-ratio: 16/10; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; font-size: 100px;
  margin-bottom: 20px; position: relative;
}
.breadcrumb { font-size: 13px; color: var(--ink-soft); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--brand-dark); }
.detail-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.badge { font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill); }
.info-list { list-style: none; padding: 0; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.info-list li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.info-list .ico { font-size: 18px; }

.booking-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-md); position: sticky; top: 100px;
}
.booking-price { font-family: var(--font-head); font-size: 30px; font-weight: 700; }
.booking-price span { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.session-list { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
.session-option {
  display: flex; align-items: center; gap: 10px;
  border: 2px solid var(--line); border-radius: var(--radius-sm);
  padding: 10px 12px; cursor: pointer; font-size: 14px; font-weight: 600;
}
.session-option:has(input:checked) { border-color: var(--brand); background: var(--brand-light); }
.session-option input { accent-color: var(--brand); }

/* ============ Forms (booking / contact) ============ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field label .req { color: var(--brand); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px;
  padding: 12px 14px; border-radius: var(--radius-sm); border: 2px solid var(--line);
  background: var(--white); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); }
.field-hint { font-size: 12px; color: var(--ink-soft); }

.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout-panel { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.panel-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 17px; font-weight: 600; margin-bottom: 18px; }
.panel-title .num { background: var(--brand); color: var(--white); width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; }

.pay-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 480px) { .pay-methods { grid-template-columns: repeat(2, 1fr); } }
.pay-option {
  border: 2px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 8px; text-align: center; cursor: pointer; font-size: 12px; font-weight: 700;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.pay-option .pay-icon { font-size: 22px; }
.pay-option:has(input:checked) { border-color: var(--brand); background: var(--brand-light); }
.pay-option input { accent-color: var(--brand); }
.card-fields { margin-top: 16px; }

.order-summary { background: var(--white); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-md); position: sticky; top: 100px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; }
.summary-row.total { font-family: var(--font-head); font-size: 17px; font-weight: 700; border-top: 2px solid var(--line); margin-top: 8px; padding-top: 14px; }
.summary-child { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.summary-child .thumb { width: 56px; height: 56px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }

/* ============ Empty cart / list ============ */
.cart-list { display: flex; flex-direction: column; gap: 16px; }
.cart-item { display: flex; gap: 16px; background: var(--white); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow-sm); align-items: center; }
.cart-item .thumb { width: 76px; height: 76px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 34px; flex-shrink: 0; }
.cart-item .grow { flex: 1; }
.cart-item .remove-btn { background: none; border: none; color: var(--ink-soft); font-size: 13px; font-weight: 700; cursor: pointer; text-decoration: underline; }

/* ============ How it works ============ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 760px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { text-align: center; padding: 10px; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--brand);
  color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}

/* ============ Testimonials ============ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.testi-stars { color: var(--yellow); font-size: 15px; margin-bottom: 10px; }
.testi-name { font-family: var(--font-head); font-weight: 600; font-size: 14px; margin-top: 12px; }
.testi-role { font-size: 12px; color: var(--ink-soft); }

/* ============ Promo / newsletter ============ */
.promo-strip {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white); border-radius: var(--radius-lg);
  padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.promo-strip h2, .promo-strip p { color: var(--white); margin: 0; }
.promo-strip p { opacity: 0.9; margin-top: 6px; }
.promo-strip .btn-primary { background: var(--white); color: var(--brand-dark); }
.promo-strip .btn-primary:hover { background: var(--yellow); }

.newsletter { background: var(--white); border-radius: var(--radius-lg); padding: 44px; text-align: center; box-shadow: var(--shadow-sm); }
.newsletter-form { display: flex; gap: 10px; max-width: 420px; margin: 18px auto 0; }
.newsletter-form input {
  flex: 1; padding: 13px 16px; border-radius: var(--radius-pill); border: 2px solid var(--line); font-family: var(--font-body); font-size: 14px;
}
.newsletter-form input:focus { outline: none; border-color: var(--brand); }
@media (max-width: 480px) { .newsletter-form { flex-direction: column; } }

/* ============ Footer ============ */
.site-footer { background: var(--ink); color: #E8E2DA; padding: 56px 24px 22px; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.footer-col h4 { color: var(--white); font-size: 14px; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: #C7BFB5; }
.footer-col a:hover { color: var(--yellow); }
.footer-contact li { display: flex; gap: 8px; align-items: center; }
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.pay-badge { background: rgba(255,255,255,0.08); padding: 6px 12px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 700; }
.footer-bottom {
  max-width: 1180px; margin: 40px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; font-size: 13px; color: #A79E92; flex-wrap: wrap; gap: 8px;
}

/* ============ Toast ============ */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--white); padding: 14px 24px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px; box-shadow: var(--shadow-lg); z-index: 200;
  opacity: 0; pointer-events: none; transition: all 0.25s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ Generic page (about/contact/404) ============ */
.page-hero { text-align: center; padding: 56px 24px 20px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.contact-card .icon { font-size: 26px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 760px) { .value-grid { grid-template-columns: 1fr; } }
.value-card { text-align: center; }
.value-card .icon { font-size: 36px; margin-bottom: 10px; }
.not-found { text-align: center; padding: 90px 24px; }
.not-found .big { font-size: 100px; margin-bottom: 8px; }
