/* =========================================================
   Cervadune — Στρατηγικά παιχνίδια & προσομοιώσεις (Google Play)
   Palette: royal violet, amber, teal, parchment
   ========================================================= */

:root {
  --rose: #7a3fbf;
  --rose-deep: #46207f;
  --caramel: #c07d20;
  --caramel-light: #f0b455;
  --mint: #1f9c8c;
  --mint-light: #b6e6de;
  --grape: #33235e;
  --sugar: #fbf8f1;
  --sugar-2: #f2ecdd;
  --ink: #241f30;
  --muted: #5c5670;
  --line: #e6dcc6;
  --r-s: 10px;
  --r-m: 18px;
  --r-l: 30px;
  --sh-s: 0 6px 20px rgba(70, 32, 127, .09);
  --sh-m: 0 16px 40px rgba(70, 32, 127, .13);
  --sh-l: 0 30px 70px rgba(70, 32, 127, .18);
  --container: 1180px;
  --sans: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  --head: "Verdana", "Geneva", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background:
    radial-gradient(1100px 500px at 100% -5%, rgba(240, 180, 85, .22), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(31, 156, 140, .18), transparent 55%),
    var(--sugar);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: var(--rose-deep); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 26px; }

/* ---------- Top bar ---------- */

.topbar {
  background: linear-gradient(90deg, var(--rose-deep), var(--grape));
  color: #efeaf9;
  font-size: 13.5px;
  letter-spacing: .3px;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 9px 0;
}

.topbar a { color: #e3dcf7; text-decoration: none; font-weight: 700; }

/* ---------- Header ---------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 247, 249, .94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }

.logo__gem {
  width: 44px;
  height: 44px;
  background: conic-gradient(from 210deg, var(--rose), var(--caramel-light), var(--mint), var(--rose));
  border-radius: 14px;
  transform: rotate(8deg);
  box-shadow: 0 8px 18px rgba(122, 63, 191, .32);
  position: relative;
}

.logo__gem::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
}

.logo__text { font-family: var(--head); font-weight: 700; font-size: 21px; color: var(--ink); letter-spacing: -.4px; }
.logo__text em { font-style: normal; color: var(--rose); }
.logo__sub { display: block; font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--muted); font-weight: 700; }

.menu { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }

.menu a {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  padding: 10px 15px;
  border-radius: var(--r-s);
  transition: .18s ease;
}

.menu a:hover { background: var(--sugar-2); color: var(--rose-deep); }
.menu a[aria-current="page"] { background: var(--rose); color: #fff; box-shadow: var(--sh-s); }

.burger {
  display: none;
  background: var(--rose);
  color: #fff;
  border: 0;
  border-radius: var(--r-s);
  padding: 11px 15px;
  font-weight: 700;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
}

/* ---------- Hero ---------- */

.hero { padding: 70px 0 80px; }

.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(31, 156, 140, .12);
  padding: 8px 16px;
  border-radius: 999px;
}

h1 {
  font-family: var(--head);
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.14;
  letter-spacing: -1px;
  margin: 20px 0 18px;
  color: var(--ink);
}

h1 .grad {
  background: linear-gradient(100deg, var(--rose), var(--caramel));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede { font-size: 19px; color: var(--muted); max-width: 56ch; }

.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

.button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  padding: 15px 28px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}

.button--solid { background: linear-gradient(120deg, var(--rose), #9d6ce8); color: #fff; box-shadow: 0 14px 30px rgba(122, 63, 191, .34); }
.button--mint { background: linear-gradient(120deg, var(--mint), #3fc7b3); color: #04352c; box-shadow: 0 14px 30px rgba(31, 156, 140, .3); }
.button--line { background: #fff; color: var(--rose-deep); border: 2px solid var(--line); }
.button:hover { transform: translateY(-3px); }

/* Candy cluster illustration */

.candyboard {
  background: #fff;
  border-radius: var(--r-l);
  padding: 22px;
  box-shadow: var(--sh-l);
  border: 1px solid var(--line);
}

.candyboard__title {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 15px;
}

.candyboard__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }

.sweet {
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 19px;
  background: var(--sugar-2);
  box-shadow: inset 0 -3px 6px rgba(70, 32, 127, .09);
  animation: pop .55s ease both;
}

.sweet--cluster {
  background: radial-gradient(circle at 35% 30%, #fff, var(--mint-light));
  box-shadow: 0 0 0 3px rgba(31, 156, 140, .35), inset 0 -3px 6px rgba(31, 156, 140, .2);
}

@keyframes pop { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }

.candyboard__legend {
  margin-top: 15px; padding-top: 13px; border-top: 1px dashed var(--line);
  font-size: 13.5px; color: var(--muted);
}

/* ---------- Sections ---------- */

.band { padding: 76px 0; }
.band--white { background: #fff; }
.band--sugar { background: linear-gradient(180deg, #fff, var(--sugar-2)); }
.band--dark { background: linear-gradient(135deg, #241f30, #46207f); color: #efeaf9; }
.band--dark h2, .band--dark h3 { color: #fff; }
.band--dark p { color: rgba(240, 236, 250, .84); }

h2 {
  font-family: var(--head);
  font-size: clamp(25px, 3.1vw, 36px);
  line-height: 1.22;
  letter-spacing: -.6px;
  color: var(--ink);
  margin-bottom: 14px;
}

h3 { font-family: var(--head); font-size: 20px; color: var(--rose-deep); margin: 32px 0 10px; letter-spacing: -.3px; }
h4 { font-size: 17px; margin: 20px 0 8px; color: var(--ink); }

.kicker { max-width: 70ch; color: var(--muted); font-size: 18px; margin-bottom: 34px; }

/* ---------- Longread ---------- */

.longread { display: grid; grid-template-columns: 250px 1fr; gap: 44px; align-items: start; }

.sidenav {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: var(--r-m);
  padding: 22px;
  box-shadow: var(--sh-s);
  border: 1px solid var(--line);
  font-size: 14.5px;
}

.sidenav strong { display: block; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.sidenav a { display: block; padding: 7px 0; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--sugar-2); font-weight: 600; }
.sidenav a:last-child { border-bottom: 0; }
.sidenav a:hover { color: var(--rose); }

.prose { background: #fff; border-radius: var(--r-l); padding: clamp(24px, 3.8vw, 48px); box-shadow: var(--sh-s); border: 1px solid var(--line); }
.prose p { margin-bottom: 18px; max-width: 76ch; }
.prose ul, .prose ol { margin: 0 0 20px 22px; max-width: 74ch; }
.prose li { margin-bottom: 9px; }

.quote {
  margin: 28px 0;
  padding: 22px 26px;
  border-radius: var(--r-m);
  background: linear-gradient(120deg, var(--sugar-2), #fff);
  border-left: 5px solid var(--caramel-light);
  font-size: 18px;
  color: var(--rose-deep);
  font-weight: 600;
}

.figure {
  margin: 26px 0;
  padding: 22px;
  border-radius: var(--r-m);
  background: var(--sugar);
  border: 1px dashed var(--line);
}

.figure figcaption { font-size: 13.5px; color: var(--muted); margin-top: 12px; }

/* ---------- Tables ---------- */

.scroller { overflow-x: auto; margin: 24px 0; }

table { width: 100%; border-collapse: collapse; min-width: 540px; font-size: 15.5px; }
caption { text-align: left; font-size: 13.5px; color: var(--muted); padding-bottom: 9px; }
th, td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
th { background: var(--sugar-2); color: var(--rose-deep); font-weight: 800; }

/* ---------- Grid of tiles ---------- */

.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }

.tile {
  background: #fff;
  border-radius: var(--r-m);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--sh-s);
  transition: .2s ease;
}

.tile:hover { transform: translateY(-5px); box-shadow: var(--sh-m); }

.tile__glyph {
  width: 50px; height: 50px; border-radius: 16px;
  background: linear-gradient(140deg, var(--sugar-2), #fff);
  display: grid; place-items: center; font-size: 25px;
  border: 1px solid var(--line);
  margin-bottom: 15px;
}

.tile h3 { margin: 0 0 8px; font-size: 18.5px; }
.tile p { color: var(--muted); font-size: 15.5px; margin: 0; }

.pill {
  display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
  background: rgba(31, 156, 140, .14); color: #0c6d5d;
}
.pill--rose { background: rgba(122, 63, 191, .12); color: var(--rose-deep); }
.pill--caramel { background: rgba(192, 125, 32, .16); color: #8a4d12; }

/* ---------- Offer / report card ---------- */

.offer {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  background: #fff;
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--sh-l);
  border: 1px solid var(--line);
}

.offer__left { padding: clamp(26px, 3.6vw, 46px); }
.offer__right { padding: clamp(26px, 3.6vw, 46px); background: linear-gradient(160deg, var(--sugar-2), #fff); border-left: 1px solid var(--line); }

.price {
  font-family: var(--head);
  font-size: 46px;
  color: var(--rose);
  letter-spacing: -1.5px;
  line-height: 1;
  margin: 12px 0 6px;
}
.price small { font-size: 15px; color: var(--muted); font-family: var(--sans); letter-spacing: 0; }

.ticks { list-style: none; margin: 20px 0 0; }
.ticks li { position: relative; padding-left: 30px; margin-bottom: 11px; color: var(--muted); font-size: 15.5px; }
.ticks li::before {
  content: "✔";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(31, 156, 140, .16); color: var(--mint);
  font-size: 11px; display: grid; place-items: center;
  margin-top: 5px;
}

/* ---------- Forms ---------- */

.formbox { background: #fff; border-radius: var(--r-l); padding: clamp(24px, 3.6vw, 44px); box-shadow: var(--sh-m); border: 1px solid var(--line); }

.rows { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }

.row { display: flex; flex-direction: column; gap: 7px; }
.row--wide { grid-column: 1 / -1; }

label { font-size: 14px; font-weight: 800; color: var(--ink); letter-spacing: .2px; }
label b { color: var(--rose); }

input[type=text], input[type=email], input[type=tel], input[type=number], select, textarea {
  font-family: inherit; font-size: 16px; color: var(--ink);
  background: var(--sugar);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  width: 100%;
  transition: .16s ease;
}

textarea { min-height: 135px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--mint); background: #fff;
  box-shadow: 0 0 0 4px rgba(31, 156, 140, .16);
}

.tip { font-size: 13.5px; color: var(--muted); }

.agree { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.agree input { width: 19px; height: 19px; margin-top: 4px; accent-color: var(--rose); }

.radios { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }

.radio {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 14px 16px; border: 2px solid var(--line); border-radius: 14px;
  cursor: pointer; background: var(--sugar); font-size: 15px; transition: .16s ease;
}
.radio:hover { border-color: var(--caramel-light); }
.radio input { accent-color: var(--rose); margin-top: 3px; }
.radio span small { display: block; color: var(--muted); font-size: 13px; }

.alert { display: none; margin-top: 18px; border-radius: var(--r-m); padding: 17px 21px; font-size: 15.5px; font-weight: 600; }
.alert.ok { display: block; background: rgba(31, 156, 140, .12); border: 1px solid rgba(31, 156, 140, .4); color: #0b5f51; }
.alert.bad { display: block; background: rgba(122, 63, 191, .09); border: 1px solid rgba(122, 63, 191, .38); color: var(--rose-deep); }

.smallprint { margin-top: 20px; background: var(--sugar); border-radius: var(--r-m); padding: 17px 21px; font-size: 14.5px; color: var(--muted); border: 1px dashed var(--line); }

/* ---------- Facts strip ---------- */

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 18px; }
.fact { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); border-radius: var(--r-m); padding: 22px; text-align: center; }
.fact b { display: block; font-family: var(--head); font-size: 32px; color: var(--caramel-light); line-height: 1; }
.fact span { font-size: 14px; color: rgba(240, 236, 250, .8); }

/* ---------- Accordion ---------- */

.qa { background: #fff; border: 1px solid var(--line); border-radius: var(--r-m); padding: 17px 22px; margin-bottom: 12px; box-shadow: var(--sh-s); }
.qa summary { cursor: pointer; font-weight: 800; color: var(--ink); font-size: 16.5px; }
.qa[open] summary { color: var(--rose); margin-bottom: 9px; }
.qa p { color: var(--muted); font-size: 15.5px; }

/* ---------- Page banner ---------- */

.banner { padding: 58px 0 52px; background: linear-gradient(160deg, var(--sugar-2), rgba(169, 236, 223, .25)); border-bottom: 1px solid var(--line); }
.banner h1 { font-size: clamp(29px, 3.8vw, 42px); margin: 14px 0 12px; }
.banner p { color: var(--muted); font-size: 18px; max-width: 66ch; }
.path { font-size: 13.5px; color: var(--muted); }
.path a { color: var(--rose-deep); text-decoration: none; }

/* ---------- Legal ---------- */

.doc { background: #fff; border-radius: var(--r-l); padding: clamp(24px, 4vw, 52px); box-shadow: var(--sh-s); border: 1px solid var(--line); max-width: 920px; }
.doc h2 { font-size: 24px; margin-top: 34px; }
.doc h2:first-of-type { margin-top: 0; }
.doc p, .doc li { color: var(--muted); font-size: 16px; }
.doc ul, .doc ol { margin: 0 0 18px 22px; }
.stamp { display: inline-block; background: var(--sugar-2); border-radius: 999px; padding: 9px 18px; font-size: 13.5px; color: var(--muted); margin-bottom: 26px; }

/* ---------- Contact ---------- */

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px; align-items: start; }
.deflist { list-style: none; }
.deflist li { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px dashed var(--line); }
.deflist li:last-child { border-bottom: 0; }
.deflist b { min-width: 100px; font-size: 14px; color: var(--ink); }
.deflist span { color: var(--muted); font-size: 15.5px; }

/* ---------- Footer ---------- */

.footer { background: #241f30; color: rgba(240, 236, 250, .74); padding: 56px 0 28px; font-size: 15px; }
.footer a { color: rgba(240, 236, 250, .74); text-decoration: none; }
.footer a:hover { color: var(--caramel-light); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; }
.footer h5 { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 9px; }
.footer__bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(240, 236, 250, .16); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: rgba(240, 236, 250, .55); }

.ribbon { background: var(--rose-deep); color: #e8e2f7; text-align: center; padding: 11px 22px; font-size: 13.5px; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero__inner, .longread, .offer, .split { grid-template-columns: 1fr; }
  .sidenav { position: static; }
  .offer__right { border-left: 0; border-top: 1px solid var(--line); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .masthead__inner { position: relative; }
  .menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: #fff; padding: 12px 16px 18px; box-shadow: var(--sh-m);
    border-radius: 0 0 var(--r-m) var(--r-m);
  }
  .menu.open { display: flex; }
  .burger { display: block; }
  .band { padding: 54px 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .candyboard__grid { gap: 5px; }
  .sweet { font-size: 15px; }
}

/* =========================================================
   Κατάλογος παιχνιδιών Google Play
   ========================================================= */

.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }

.chips__item {
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--muted);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: .18s ease;
}
.chips__item:hover { border-color: var(--caramel-light); color: var(--rose-deep); }
.chips__item.active { background: var(--rose); border-color: var(--rose); color: #fff; }

.catalogue { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }

.entry {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--sh-s);
  display: flex;
  flex-direction: column;
  transition: .2s ease;
}
.entry:hover { transform: translateY(-5px); box-shadow: var(--sh-m); }

.entry__art { position: relative; }
.entry__art img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.entry__label {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(36, 31, 48, .85); color: #f0ecfa;
  font-size: 11.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px;
}

.entry__inner { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.entry__name { font-family: var(--head); font-size: 20px; margin: 0 0 6px; letter-spacing: -.4px; }
.entry__studio { font-size: 13.5px; color: var(--muted); margin-bottom: 12px; }
.entry__desc { font-size: 15px; color: var(--muted); margin-bottom: 16px; }

.entry__facts {
  list-style: none; margin: auto 0 16px; padding-top: 14px;
  border-top: 2px dashed var(--line); font-size: 13.5px; color: var(--muted); display: grid; gap: 7px;
}
.entry__facts li { display: flex; justify-content: space-between; gap: 12px; }
.entry__facts b { color: var(--ink); }

.score { color: var(--caramel); letter-spacing: 2px; }
.score small { color: var(--muted); letter-spacing: 0; margin-left: 6px; }

.entry .button { justify-content: center; font-size: 15px; padding: 13px 22px; }

.hero-art {
  width: 100%; border-radius: var(--r-l);
  border: 1px solid var(--line); box-shadow: var(--sh-l);
}

.art-note { font-size: 13.5px; color: var(--muted); margin-top: 12px; }

/* screenshot-style figures inside articles */
.guide-shot { width: 100%; border-radius: var(--r-m); border: 1px solid var(--line); box-shadow: var(--sh-s); margin: 8px 0 10px; }
.guide-caption { font-size: 13.5px; color: var(--muted); margin: 0 0 22px; }

/* =========================================================
   Cookie consent (Consent Mode v2 ready)
   ========================================================= */
.cc {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 999;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
  padding: 20px 24px;
  animation: cc-in .28s ease both;
}
.cc[hidden] { display: none; }
@keyframes cc-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.cc__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
}
.cc__title { display: block; font-size: 15.5px; margin-bottom: 4px; color: var(--ink); }
.cc__body { font-size: 14px; line-height: 1.6; color: var(--muted); max-width: 74ch; margin: 0; }
.cc__link { color: var(--rose); font-weight: 700; }
.cc__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cc__btn {
  font-family: inherit; font-size: 14.5px; font-weight: 800; cursor: pointer;
  padding: 12px 22px; border-radius: 999px; border: 1px solid var(--line); white-space: nowrap;
}
.cc__btn--ghost { background: transparent; color: var(--ink); }
.cc__btn--ghost:hover { border-color: var(--rose); color: var(--rose); }
.cc__btn--solid { background: var(--rose); color: #fff; border-color: transparent; }
.cc__btn--solid:hover { filter: brightness(1.06); }
@media (max-width: 720px) {
  .cc { left: 8px; right: 8px; bottom: 8px; padding: 18px; }
  .cc__actions { width: 100%; }
  .cc__btn { flex: 1; }
}
