:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --text: #F5F5F5;
  --muted: #BDBDBD;
  --primary: #A3E635;
  --secondary: #38BDF8;
  --accent: #F43F5E;
  --border: rgba(245,245,245,0.12);
  --font: "Trebuchet MS", "Segoe UI", "Gill Sans", "Century Gothic", sans-serif;
  --font-display: "Trebuchet MS", "Gill Sans", "Century Gothic", sans-serif;
  --ui-motif: organic natural blob shapes fluid soft gradients playful;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(163, 230, 53, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(56, 189, 248, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(244, 63, 94, 0.08), transparent 55%),
    linear-gradient(165deg, var(--bg) 0%, #0d0d0d 40%, var(--bg) 100%);
}

main {
  flex: 1 0 auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 42%, rgba(163, 230, 53, 0.07) 0%, transparent 28%),
    radial-gradient(circle at 78% 68%, rgba(56, 189, 248, 0.06) 0%, transparent 32%),
    radial-gradient(circle at 52% 22%, rgba(244, 63, 94, 0.05) 0%, transparent 24%);
  opacity: 0.9;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

.page-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.disclosure-badge {
  display: block;
  max-width: fit-content;
  margin: 8px auto;
  padding: 5px 18px;
  border-radius: 4px;
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.3);
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
}

.nav-top {
  height: 32px;
  background: #050505;
  border-bottom: 1px solid var(--border);
}

.nav-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-top-email {
  font-size: 12px;
  color: var(--muted);
}

.nav-top-email a {
  color: var(--muted);
}

.nav-top-email a:hover {
  color: var(--primary);
}

.badge-18 {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid rgba(244, 63, 94, 0.4);
  padding: 2px 8px;
  border-radius: 4px;
}

.nav-main {
  height: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(8px);
}

.nav-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-lockup:hover {
  color: var(--primary);
}

.brand-lockup img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--accent);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 110;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 120;
  padding: 80px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover {
  color: var(--accent);
}

body.nav-open {
  overflow: hidden;
}

.organic-blob {
  position: absolute;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  animation: blob-float 14s ease-in-out infinite;
}

.organic-blob.blob-a {
  width: 280px;
  height: 260px;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.35), transparent 70%);
  top: -40px;
  left: -60px;
}

.natural-flow {
  position: relative;
}

.blob-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.fluid-wave {
  position: relative;
}

.soft-gradients {
  background-image:
    linear-gradient(135deg, rgba(163, 230, 53, 0.06), transparent 40%),
    linear-gradient(315deg, rgba(56, 189, 248, 0.06), transparent 45%);
}

.playful-motion {
  animation: blob-float 16s ease-in-out infinite;
}

.organic-blob.blob-b {
  width: 220px;
  height: 240px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.3), transparent 70%);
  bottom: -50px;
  right: -40px;
  animation-delay: -4s;
  border-radius: 40% 60% 55% 45% / 48% 42% 58% 52%;
}

.organic-blob.blob-c {
  width: 180px;
  height: 190px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.28), transparent 70%);
  top: 40%;
  right: 8%;
  animation-delay: -7s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(12px, -18px) scale(1.05); }
  66% { transform: translate(-10px, 10px) scale(0.96); }
}

.wave-divider {
  display: block;
  width: 100%;
  height: 48px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath fill='%23141414' d='M0,24 C240,48 480,0 720,18 C960,36 1200,48 1440,12 L1440,48 L0,48 Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  margin: 0;
  border: 0;
}

.wave-divider.flip {
  transform: scaleY(-1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath fill='%230A0A0A' d='M0,24 C240,48 480,0 720,18 C960,36 1200,48 1440,12 L1440,48 L0,48 Z'/%3E%3C/svg%3E");
}

.hero {
  position: relative;
  text-align: center;
  padding: 64px 20px 72px;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -120px;
  top: -80px;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.18), transparent 68%);
  border-radius: 58% 42% 48% 52% / 42% 58% 42% 58%;
  opacity: 0.85;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -100px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.16), transparent 68%);
  border-radius: 42% 58% 62% 38% / 55% 40% 60% 45%;
  opacity: 0.8;
  pointer-events: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.hero-sub {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.offers-section {
  position: relative;
  padding: 56px 0 72px;
  background-color: var(--surface);
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.88)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.offers-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.2), transparent 70%);
  top: -80px;
  right: -60px;
  pointer-events: none;
}

.offers-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.offers-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.offers-intro {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 32px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  justify-items: center;
}

.offer-card {
  background: #fff;
  border: 4px solid #000;
  width: 100%;
  max-width: 340px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 7px 7px 0 #000;
}

.offer-card-logo {
  width: 180px;
  height: 80px;
  margin: 22px auto 0;
  padding: 0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #e5e7eb;
  border-bottom: 3px solid #000;
}

.offer-card-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin: 16px 16px 8px;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.offer-bonus-group {
  text-align: center;
  padding: 0 16px;
  margin-bottom: 8px;
}

.offer-bonus {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.offer-terms {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #64748b;
  margin-top: 4px;
}

.offer-desc {
  font-size: 11px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.5;
  padding: 0 16px;
  margin-bottom: 12px;
}

.offer-cta {
  display: block;
  margin: auto 16px 20px;
  text-align: center;
  background: #1e3a8a;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 16px;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.offer-cta:hover {
  color: #fff;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
}

.info-section {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}

.info-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.info-section p {
  color: var(--muted);
  margin-bottom: 14px;
}

.info-section p:last-child {
  margin-bottom: 0;
}

.topic-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  padding: 12px 22px;
  background: rgba(163, 230, 53, 0.12);
  border: 1px solid rgba(163, 230, 53, 0.35);
  color: var(--primary);
  font-weight: 700;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.topic-cta:hover {
  background: rgba(163, 230, 53, 0.22);
  color: var(--text);
  transform: translateY(-2px);
}

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  margin: 16px auto;
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.site-footer {
  position: relative;
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
  margin-top: auto;
  z-index: 1;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -80px;
  top: -60px;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.1), transparent 70%);
  border-radius: 55% 45% 60% 40% / 48% 52% 48% 52%;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 12px;
  max-width: 320px;
}

.footer-col h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
}

.footer-badges img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.9;
}

.footer-requisites {
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-copy {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(189, 189, 189, 0.7);
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.age-gate.active {
  opacity: 1;
  visibility: visible;
}

.age-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.age-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #0A0A0A;
}

.btn-primary:hover {
  background: #b8f04a;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(20, 20, 20, 0.97);
  border-top: 1px solid var(--border);
  padding: 18px 20px;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-inner p {
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
  min-width: 220px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-page,
.topic-page,
.error-page {
  padding: 40px 0 64px;
  position: relative;
  z-index: 1;
}

.legal-page h1,
.topic-page h1,
.error-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.legal-page h2,
.topic-page h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 28px 0 12px;
  color: var(--primary);
}

.legal-page h3,
.topic-page h3 {
  font-size: 1.05rem;
  margin: 20px 0 10px;
  color: var(--secondary);
}

.legal-page p,
.topic-page p,
.error-page p {
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-page ul,
.topic-page ul {
  margin: 0 0 16px 1.2rem;
  color: var(--muted);
}

.legal-page li,
.topic-page li {
  margin-bottom: 6px;
}

.legal-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.legal-shell::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -60px;
  top: -50px;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.12), transparent 70%);
  border-radius: 48% 52% 58% 42% / 55% 40% 60% 45%;
  pointer-events: none;
}

.contact-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: var(--accent);
}

.field-error {
  display: none;
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 6px;
}

.field-error.visible {
  display: block;
}

.form-success {
  display: none;
  background: rgba(163, 230, 53, 0.12);
  border: 1px solid rgba(163, 230, 53, 0.35);
  color: var(--primary);
  padding: 18px 20px;
  border-radius: 14px;
  margin-top: 20px;
}

.form-success.visible {
  display: block;
}

.redirect-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.redirect-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 20px;
  gap: 16px;
}

.ad-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.redirect-notes {
  max-width: 420px;
  color: var(--muted);
  font-size: 0.9rem;
}

.redirect-notes a {
  color: var(--secondary);
}

.error-page {
  text-align: center;
  padding: 80px 20px;
}

.error-page .home-link {
  display: inline-flex;
  margin-top: 24px;
  padding: 12px 24px;
  background: var(--primary);
  color: #0A0A0A;
  font-weight: 700;
  border-radius: 999px;
}

.error-page .home-link:hover {
  color: #0A0A0A;
  background: #b8f04a;
}

@media (max-width: 900px) {
  .nav-top {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero {
    padding: 32px 16px 48px;
  }

  .hero h1 {
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
    font-size: clamp(2.4rem, 12vw, 3.2rem);
  }
}

@media (max-width: 600px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-card-logo {
    width: 160px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-img {
    max-width: 100%;
    max-height: 220px;
    width: auto;
    height: auto;
  }

  .organic-blob {
    max-width: 100vw;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}
