﻿:root {
  --ink: #111827;
  --muted: #5f6f86;
  --line: rgba(15, 23, 42, .1);
  --surface: #ffffff;
  --page: #f6f8fb;
  --gold-light: #d8f3ea;
  --gold: #16a085;
  --gold-dark: #0d7f68;
  --pine: #123b4a;
  --pine-light: #1f6675;
  --sky: #edf6fb;
  --radius: 16px;
  --shadow: 0 18px 46px rgba(15, 23, 42, .08);
}

* {
  box-sizing: border-box;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(22, 160, 133, .08), transparent 28rem),
    linear-gradient(180deg, #fbfdff 0%, var(--page) 52%, #eef4f8 100%);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16.5px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: var(--gold-dark);
  text-underline-offset: .18em;
}

p {
  color: #3f4a5f;
  font-size: 1.02rem;
  line-height: 1.68;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -.015em;
}

.navbar {
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  backdrop-filter: blur(16px);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding-top: .2rem;
  padding-bottom: .2rem;
}

.navbar-brand img {
  display: block;
  width: 224px;
  height: auto;
}

.navbar-brand:hover {
  color: var(--ink);
}

.navbar-toggler {
  border-color: rgba(15, 23, 42, .16);
}

.navbar-toggler-icon {
  filter: none;
}

.nav-link {
  color: #475569;
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 999px;
  padding-inline: .9rem !important;
  transition: color .2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pine) !important;
  background: rgba(22, 160, 133, .1);
}

.site-header {
  position: relative;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 14%, rgba(22, 160, 133, .14), transparent 24rem),
    radial-gradient(circle at 14% 10%, rgba(56, 139, 170, .13), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f4faf9 100%);
  overflow: hidden;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto -12% -42% 52%;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 96, 80, .08), transparent 62%);
  pointer-events: none;
}

.hero {
  padding: 5rem 0 4.4rem;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1,
.article-hero h1 {
  letter-spacing: -.03em;
  font-weight: 800;
}

.hero .lead {
  color: #536179;
  max-width: 620px;
  font-size: 1.18rem;
  font-weight: 500;
}

.hero-card,
.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--shadow);
}

.hero-card img,
.img-frame img {
  display: block;
  width: 100%;
  transition: transform .5s ease;
}

.hero-card:hover img,
.img-frame:hover img {
  transform: scale(1.04);
}

.section-visual {
  border-radius: 16px;
}

.section-visual img {
  aspect-ratio: 21 / 9;
  height: auto;
  max-height: 285px;
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-note {
  color: #375148;
  background: rgba(22, 160, 133, .08);
  border: 1px solid rgba(22, 160, 133, .18);
  border-radius: 14px;
  padding: 1rem 1.2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}

.btn-success {
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: var(--gold-dark);
  --bs-btn-hover-border-color: var(--gold-dark);
  --bs-btn-active-bg: var(--gold-dark);
  --bs-btn-active-border-color: var(--gold-dark);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(22, 160, 133, .24);
  font-weight: 750;
  padding: .78rem 1.4rem;
  color: #fff;
}

.btn-success:hover {
  color: #fff;
}

.btn-outline-light {
  border-radius: 999px;
  font-weight: 650;
  padding: .78rem 1.4rem;
  border-color: rgba(15, 23, 42, .16);
  color: var(--ink);
  background: rgba(255, 255, 255, .62);
}

.btn-outline-light:hover {
  color: var(--pine);
  background: #fff;
  border-color: rgba(22, 160, 133, .35);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: 1.4rem;
}

.stat-pill {
  padding: .85rem;
  border-radius: 14px;
  color: #536179;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(15, 23, 42, .08);
  text-align: center;
}

.stat-pill strong {
  display: block;
  color: var(--pine);
  font-size: 1.15rem;
  font-weight: 700;
}

.section-pad {
  padding: 4.6rem 0;
}

.soft-section {
  background: rgba(255, 255, 255, .58);
}

.cream-section {
  background: linear-gradient(180deg, rgba(238, 247, 255, .72), rgba(255, 255, 255, .36));
}

.section-kicker {
  color: var(--gold-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.plain-panel,
.feature-card,
.review-card,
.article-card,
.contact-panel {
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .055);
}

.plain-panel {
  padding: 1.5rem;
}

.feature-card,
.review-card,
.article-card,
.contact-panel {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover,
.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 160, 133, .24);
  box-shadow: 0 20px 44px rgba(15, 23, 42, .09);
}

.lux-icon,
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(22, 160, 133, .12), rgba(238, 247, 255, .9));
  border: 1px solid rgba(22, 160, 133, .16);
}

.lux-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

.fact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  display: flex;
  align-items: start;
  gap: .7rem;
  padding: .8rem 0;
  color: #3f4858;
  border-bottom: 1px solid rgba(18, 23, 34, .08);
}

.fact-list li:last-child {
  border-bottom: 0;
}

.fact-list li::before,
.tips-list li::before {
  content: "";
  width: .5rem;
  height: .5rem;
  margin-top: .5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(22, 160, 133, .1);
  flex: 0 0 auto;
}

.step-list {
  counter-reset: steps;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(18, 23, 34, .08);
}

.step-list li:last-child {
  border-bottom: 0;
}

.step-list li::before {
  content: "0" counter(steps);
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--pine), var(--pine-light));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
}

.play-process {
  display: grid;
  gap: .9rem;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(247, 249, 252, .9));
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.process-step:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 160, 133, .22);
  box-shadow: 0 20px 44px rgba(15, 23, 42, .09);
}

.process-step::after {
  content: "";
  position: absolute;
  left: 2.45rem;
  top: calc(100% - .25rem);
  width: 1px;
  height: 1.15rem;
  background: linear-gradient(180deg, rgba(22, 160, 133, .3), transparent);
}

.process-step:last-child::after {
  display: none;
}

.process-icon {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 12px 26px rgba(22, 160, 133, .22);
}

.process-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.process-step h3 {
  margin-bottom: .25rem;
  font-weight: 600;
}

.process-step p {
  color: var(--muted);
}

.tips-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .95rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tips-list li {
  display: flex;
  align-items: start;
  gap: .75rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(15, 23, 42, .08);
  font-weight: 450;
}

.review-line {
  height: 100%;
  padding: 1.4rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  position: relative;
}

.review-line::before {
  content: "\201C";
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: -.5rem;
}

.review-line p {
  color: #3f4858;
  font-style: italic;
}

.table {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .055);
}

.table thead th {
  background: var(--pine);
  color: #fff;
  border-color: rgba(255, 255, 255, .08);
  font-weight: 600;
  letter-spacing: .02em;
}

.accordion-item {
  border-color: rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .85);
  border-radius: 12px !important;
  margin-bottom: .5rem;
  overflow: hidden;
}

.accordion-button {
  font-weight: 650;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
}

.accordion-button:not(.collapsed) {
  color: var(--pine);
  background: rgba(22, 160, 133, .08);
  box-shadow: inset 0 -1px 0 rgba(22, 160, 133, .12);
}

.article-hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(22, 160, 133, .14), transparent 21rem),
    linear-gradient(180deg, #fff 0%, #f3f8fb 100%);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.article-hero .lead {
  color: #536179;
}

.content-wrap {
  max-width: 880px;
}

.content-wrap h2 {
  margin-top: 2.25rem;
  letter-spacing: -.02em;
  font-weight: 750;
}

.article-card {
  overflow: hidden;
}

.article-card img,
.article-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  border-radius: 12px;
}

.article-thumb {
  height: 330px;
  margin-bottom: 1.65rem;
  box-shadow: var(--shadow);
}

.footer {
  background: #0f172a;
  color: rgba(255, 255, 255, .7);
}

.footer a {
  color: var(--gold-light);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  width: min(100% - 2rem, 520px);
  color: #fff;
  background: rgba(15, 23, 42, .96);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, .22);
  padding: 1rem;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  overflow-wrap: anywhere;
}

.cookie-banner a {
  color: var(--gold-light);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.cookie-banner__title {
  margin-bottom: .35rem;
  font-weight: 650;
  letter-spacing: -.01em;
}

.cookie-banner__actions {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  margin-top: .9rem;
}

.cookie-banner .btn {
  border-radius: 999px;
  font-weight: 600;
}

.text-bg-success {
  color: #fff !important;
  background-color: var(--gold) !important;
}

.text-success {
  color: var(--gold-dark) !important;
}

.play-shell {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(15, 61, 53, .96), rgba(20, 96, 80, .92)),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .16), transparent 18rem);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.play-shell__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 1rem;
}

.play-shell__bar strong {
  color: #fff;
}

.play-shell__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .55rem;
  min-height: 220px;
  padding: .9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
}

.play-stack {
  min-height: 170px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px dashed rgba(255, 255, 255, .18);
  padding: .45rem;
}

.play-card {
  height: 4.2rem;
  margin-bottom: -2.2rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .12);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .16);
}

.play-card.is-down {
  background:
    linear-gradient(135deg, rgba(22, 160, 133, .95), rgba(14, 116, 144, .95));
  border-color: rgba(255, 255, 255, .22);
}

.play-card:nth-child(2n) {
  transform: translateY(2px);
}

.game-section {
  padding: 2.4rem 0 4.6rem;
  background: linear-gradient(180deg, #f5faf8 0%, rgba(255, 255, 255, .72) 100%);
}

.game-shell {
  color: #fff;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, .13), transparent 18rem),
    linear-gradient(135deg, #123b4a, #1f6675);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.game-shell:fullscreen {
  overflow: auto;
  border-radius: 0;
  padding: 1rem;
}

.game-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.game-topbar h2,
.game-topbar .section-kicker {
  color: #fff;
  margin-bottom: .1rem;
}

.game-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.game-actions .btn {
  padding: .62rem 1rem;
}

.game-status {
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
}

.crescent-board {
  position: relative;
  min-height: 650px;
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, .08), transparent 18rem),
    rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden;
}

.foundation-zone {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 4.6rem);
  gap: .65rem;
  transform: translate(-50%, -50%);
}

.foundation-card,
.tableau-pile {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.foundation-card {
  position: relative;
  width: 4.6rem;
  height: 6.3rem;
  color: #111827;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .2);
  text-align: left;
  padding: .45rem;
}

.foundation-card.red,
.mini-card.red {
  color: #b4232a;
}

.foundation-card strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.foundation-card small {
  position: absolute;
  right: .45rem;
  bottom: .35rem;
  color: #64748b;
  font-size: .68rem;
  text-transform: uppercase;
}

.tableau-zone {
  position: absolute;
  inset: 0;
}

.tableau-pile {
  position: absolute;
  width: 5.2rem;
  height: 8.4rem;
  color: #111827;
  background: rgba(255, 255, 255, .08);
  border: 1px dashed rgba(255, 255, 255, .24);
  border-radius: 14px;
  transform: translate(-50%, -50%);
}

.tableau-pile:nth-child(1) { left: 20%; top: 20%; }
.tableau-pile:nth-child(2) { left: 32%; top: 12%; }
.tableau-pile:nth-child(3) { left: 45%; top: 9%; }
.tableau-pile:nth-child(4) { left: 58%; top: 10%; }
.tableau-pile:nth-child(5) { left: 71%; top: 16%; }
.tableau-pile:nth-child(6) { left: 82%; top: 28%; }
.tableau-pile:nth-child(7) { left: 88%; top: 42%; }
.tableau-pile:nth-child(8) { left: 88%; top: 58%; }
.tableau-pile:nth-child(9) { left: 82%; top: 72%; }
.tableau-pile:nth-child(10) { left: 71%; top: 84%; }
.tableau-pile:nth-child(11) { left: 58%; top: 90%; }
.tableau-pile:nth-child(12) { left: 45%; top: 91%; }
.tableau-pile:nth-child(13) { left: 32%; top: 88%; }
.tableau-pile:nth-child(14) { left: 20%; top: 80%; }
.tableau-pile:nth-child(15) { left: 12%; top: 64%; }
.tableau-pile:nth-child(16) { left: 12%; top: 36%; }

.tableau-pile.is-selected {
  border-color: rgba(255, 255, 255, .86);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .18);
}

.foundation-card.is-selected {
  outline: 4px solid rgba(255, 255, 255, .28);
  box-shadow: 0 0 0 3px rgba(22, 160, 133, .38), 0 12px 26px rgba(0, 0, 0, .2);
}

.mini-card {
  position: absolute;
  left: .55rem;
  width: 4rem;
  height: 5.45rem;
  color: #111827;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 9px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .18);
  padding: .35rem;
  font-weight: 800;
  text-align: left;
}

.tableau-pile em {
  position: absolute;
  right: -.35rem;
  bottom: -.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  color: #fff;
  background: rgba(15, 23, 42, .86);
  border-radius: 999px;
  font-size: .74rem;
  font-style: normal;
  font-weight: 700;
}

.reveal {
  animation: fadeUp .7s ease both;
}

.reveal-delay-1 {
  animation-delay: .08s;
}

.reveal-delay-2 {
  animation-delay: .16s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 991.98px) {
  .stat-strip,
  .tips-list {
    grid-template-columns: 1fr;
  }

  .play-shell__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .game-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .game-actions {
    justify-content: flex-start;
  }

  .crescent-board {
    min-height: 560px;
  }

  .foundation-zone {
    grid-template-columns: repeat(4, 3.6rem);
    gap: .45rem;
  }

  .foundation-card {
    width: 3.6rem;
    height: 5rem;
  }

  .tableau-pile {
    width: 4.2rem;
    height: 7rem;
  }

  .mini-card {
    width: 3.2rem;
    height: 4.45rem;
  }

}

@media (max-width: 767.98px) {
  .navbar-brand img {
    width: 190px;
  }

  .hero {
    padding: 3.4rem 0;
  }

  .section-pad {
    padding: 3.2rem 0;
  }

  .display-4 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .hero h1,
  .article-hero h1 {
    max-width: 11ch;
    overflow-wrap: break-word;
  }

  .hero .lead,
  .page-note {
    max-width: 20.5rem;
  }

  .eyebrow {
    max-width: 28ch;
  }

  .eyebrow {
    white-space: normal;
    flex-wrap: wrap;
  }

  .article-thumb {
    height: 230px;
  }

  .cookie-banner {
    right: .75rem;
    left: .75rem;
    bottom: .75rem;
    width: calc(100vw - 1.5rem);
    max-width: none;
  }

  .cookie-banner__actions .btn {
    flex: 1 1 100%;
    padding-inline: .9rem;
    width: 100%;
  }

  .play-shell {
    padding: .9rem;
  }

  .play-shell__bar {
    align-items: flex-start;
    flex-direction: column;
    gap: .25rem;
  }

  .play-shell__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .play-stack {
    min-height: 135px;
  }

  .play-card {
    height: 3.5rem;
  }

  .game-shell {
    padding: .75rem;
    border-radius: 16px;
  }

  .game-actions .btn {
    flex: 1 1 9rem;
  }

  .crescent-board {
    min-height: 780px;
  }

  .foundation-zone {
    top: 18rem;
    grid-template-columns: repeat(4, 3.3rem);
  }

  .foundation-card {
    width: 3.3rem;
    height: 4.7rem;
  }

  .tableau-pile {
    position: relative;
    left: auto !important;
    top: auto !important;
    display: inline-block;
    width: calc(25% - .45rem);
    min-width: 3.85rem;
    height: 6.7rem;
    margin: 28rem .18rem 0;
    transform: none;
    vertical-align: top;
  }

  .tableau-pile:nth-child(n+5) {
    margin-top: .65rem;
  }

  .mini-card {
    left: .35rem;
    width: calc(100% - .7rem);
    height: 4.1rem;
    font-size: .82rem;
  }
}
