/* ======================================================================
   Smash Casino — feuille de style principale
   Thème : pirate / trésor — bleu nuit + or + rouge
   ====================================================================== */

:root {
  --bg:            #0a0e27;
  --bg-2:          #0d1230;
  --panel:         #131a3a;
  --panel-2:       #171f45;
  --panel-hover:   #1c2550;
  --line:          #232c58;
  --gold:          #f5c451;
  --gold-2:        #d4a44a;
  --gold-deep:     #b9862b;
  --orange:        #ff8400;
  --red:           #c0392b;
  --red-2:         #8e2820;
  --blue:          #2f6bff;
  --blue-2:        #1a4fd6;
  --text:          #ffffff;
  --text-soft:     #b9c0e0;
  --text-dim:      #7c85ae;
  --radius:        14px;
  --radius-lg:     20px;
  --sidebar-w:     236px;
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Fond décoratif ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1100px 600px at 78% -8%, rgba(47,107,255,.14), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(192,57,43,.10), transparent 55%),
    linear-gradient(180deg, #0a0e27 0%, #090c22 100%);
  z-index: -2;
}

/* ======================================================================
   LAYOUT
   ====================================================================== */
.layout { display: flex; min-height: 100vh; }

/* ---------- SIDEBAR ---------- */
.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--bg-2);
  border-right: 1px solid var(--line);
  padding: 18px 14px 20px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.sidebar::-webkit-scrollbar { width: 6px; }
.sidebar::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.brand {
  display: flex;
  justify-content: center;
  padding: 4px 0 16px;
}
.brand img { height: 34px; width: auto; filter: drop-shadow(0 3px 6px rgba(0,0,0,.5)); }

/* Bannière "welcome packages" */
.side-promo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #8e2820, #c0392b 60%, #a12f24);
  border: 1px solid rgba(245,196,81,.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 4px 14px rgba(0,0,0,.35);
  overflow: hidden;
}
.side-promo::after {
  content:"";
  position:absolute; top:0; left:-60%;
  width:40%; height:100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg);
  animation: sweep 4.5s ease-in-out infinite;
}
@keyframes sweep { 0%,60%{ left:-60%; } 100%{ left:130%; } }
.side-promo .gem { font-size: 18px; color: var(--gold); filter: drop-shadow(0 2px 3px rgba(0,0,0,.4)); }
.side-promo span {
  font-size: 11px; font-weight: 800; line-height: 1.25;
  text-transform: uppercase; letter-spacing: .5px;
}

.nav { display: flex; flex-direction: column; gap: 4px; }
.nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-soft);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav a .ico { width: 22px; text-align: center; font-size: 16px; color: var(--gold); }
.nav a:hover { background: var(--panel-hover); color: #fff; transform: translateX(2px); }
.nav a.active {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  box-shadow: 0 6px 16px rgba(47,107,255,.35), inset 0 1px 0 rgba(255,255,255,.2);
}
.nav a.active .ico { color: #fff; }

.side-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--text-dim);
  font-weight: 700;
  margin: 20px 6px 10px;
}

.pop-games { display: flex; flex-direction: column; gap: 6px; }
.pop-game {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px;
  border-radius: 10px;
  transition: background .18s ease;
}
.pop-game:hover { background: var(--panel-hover); }
.pop-game .thumb {
  width: 38px; height: 38px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,.4);
}
.pop-game .meta { flex: 1; min-width: 0; }
.pop-game .meta b { display:block; font-size: 12.5px; font-weight: 700; color:#fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pop-game .meta small { font-size: 11px; color: var(--text-dim); }
.pop-game .play {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(47,107,255,.4);
}

.side-footer {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--line);
}
.lang-pill {
  display:flex; align-items:center; gap:7px;
  padding: 8px 12px; border-radius: 20px;
  background: var(--panel); border: 1px solid var(--line);
  font-size: 12px; font-weight: 600; color: var(--text-soft);
  cursor: pointer;
}
.lang-pill .lang-code {
  display:inline-flex; align-items:center; justify-content:center;
  min-width: 24px; height: 18px; padding: 0 5px; border-radius: 4px;
  background: var(--line); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .5px;
}
.side-icons { display:flex; gap:8px; }
.side-icons a {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--panel); border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color: var(--text-soft); transition: .18s;
}
.side-icons a:hover { color:#fff; border-color: var(--gold); }

/* ---------- MAIN ---------- */
.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 16px;
  padding: 14px 28px;
  background: rgba(10,14,39,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.search {
  flex: 1; max-width: 320px;
  display: flex; align-items: center; gap: 10px;
  padding: 9px 15px; border-radius: 22px;
  background: var(--panel); border: 1px solid var(--line);
  color: var(--text-dim);
}
.search input {
  border: none; background: transparent; outline: none;
  color: #fff; font-family: var(--font); font-size: 13.5px; width: 100%;
}
.search input::placeholder { color: var(--text-dim); }
.top-actions { margin-left: auto; display: flex; gap: 10px; }
.btn {
  font-family: var(--font); font-weight: 800; font-size: 13px;
  text-transform: uppercase; letter-spacing: .6px;
  padding: 10px 20px; border-radius: 22px; cursor: pointer;
  border: none; transition: transform .18s ease, filter .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn-ghost { background: transparent; color: var(--text-soft); border: 1px solid var(--line); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 6px 16px rgba(47,107,255,.4);
}
.btn-gold {
  color: #3a2600;
  background: linear-gradient(135deg, #ffd873, var(--gold), var(--gold-deep));
  box-shadow: 0 6px 16px rgba(245,196,81,.4);
}

.content { padding: 24px 28px 60px; max-width: 1180px; width: 100%; }

/* ======================================================================
   HERO BANNER (avec animation)
   ====================================================================== */
.hero-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid rgba(245,196,81,.25);
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
  aspect-ratio: 1439 / 404;
  background: #0a0e27;
}
/* scène de fond (pirate) */
.hero-banner .hb-scene {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  z-index: 0;
}
/* animation WebP par-dessus la scène */
.hero-banner .hb-anim,
.hero-banner .hb-anim-m {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  z-index: 1; pointer-events: none;
  opacity: 0; transition: opacity .6s ease;
}
/* tant que data-src n'est pas remplacé (pas de src), on masque l'image vide */
.hero-banner .hb-anim[data-src],
.hero-banner .hb-anim-m[data-src] { opacity: 0; }
.hero-banner .hb-anim:not([data-src]),
.hero-banner .hb-anim-m:not([data-src]) { opacity: 1; }
.hero-banner .hb-anim-m { display: none; }

/* colonne d'offre (calques de texte / boutons) */
.hero-offer {
  position: absolute; z-index: 3;
  left: 3%; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  width: clamp(220px, 28%, 340px);
}
.hero-welcome {
  font-size: clamp(10px, 1.1vw, 14px);
  letter-spacing: .18em; text-transform: uppercase;
  color: #ffe9a8; font-weight: 700; margin-bottom: 2px;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
}
.hero-bonus-card { width: clamp(130px, 17vw, 200px); line-height: 0; }
.hero-bonus-card img {
  width: 100%; height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.55));
  animation: heroBonusPop 4s ease-in-out infinite;
}
@keyframes heroBonusPop {
  0%,100% { transform: scale(1) rotate(0deg); }
  50%     { transform: scale(1.04) rotate(-.6deg); }
}
.hero-amount-group {
  margin-top: -8px; display: flex; flex-direction: column; align-items: center;
}
.hero-upto {
  font-size: clamp(10px, 1.1vw, 14px); font-weight: 800; letter-spacing: .12em;
  color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,.7);
}
.hero-amount {
  font-size: clamp(20px, 3vw, 40px); font-weight: 900; line-height: 1;
  color: #f5c451; -webkit-text-stroke: 1px rgba(90,30,0,.7);
  text-shadow: 0 4px 10px rgba(0,0,0,.6);
}
.hero-subtitle {
  margin-top: 6px; font-size: clamp(10px, 1vw, 13px);
  color: rgba(255,255,255,.9); text-shadow: 0 2px 5px rgba(0,0,0,.7);
}
/* bouton CTA (cadre image + label) */
.hero-cta-wrap {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: clamp(160px, 21vw, 240px); margin-top: 10px; text-decoration: none;
  animation: ctaPulse 2.2s ease-in-out infinite;
}
.hero-cta-frame { width: 100%; height: auto; display: block; }
.hero-cta-label {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-weight: 900; letter-spacing: .06em; color: #fff;
  font-size: clamp(11px, 1.3vw, 17px);
  text-shadow: 0 2px 4px rgba(0,0,0,.6); text-transform: uppercase;
}
@keyframes ctaPulse {
  0%,100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(63,123,255,.0)); }
  50%     { transform: scale(1.04); filter: drop-shadow(0 6px 16px rgba(63,123,255,.55)); }
}
.hero-cta-wrap:hover { transform: scale(1.05); animation-play-state: paused; }
/* pied : logos paiement + mentions */
.hero-foot {
  margin-top: 12px; display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hero-foot-logos { width: clamp(120px, 15vw, 180px); height: auto; opacity: .95; }
.hero-foot-text {
  display: flex; flex-direction: column;
  font-size: clamp(8px, .8vw, 11px); color: rgba(255,255,255,.75);
  text-shadow: 0 1px 3px rgba(0,0,0,.7);
}
.hero-foot-text strong { color: #f5c451; }

@media (max-width: 680px) {
  .hero-banner { aspect-ratio: 719 / 546; }
  .hero-banner .hb-anim { display: none; }
  .hero-banner .hb-anim-m { display: block; }
  .hero-offer { top: auto; bottom: 5%; transform: none; left: 50%; margin-left: -45%; width: 90%; }
  .hero-amount { -webkit-text-stroke: .5px rgba(90,30,0,.7); }
}

/* ======================================================================
   INFO STRIP
   ====================================================================== */
.info-strip { margin-bottom: 34px; }
.info-strip img { border-radius: 12px; width: 100%; }

/* ======================================================================
   SECTION HEADERS + GRIDS
   ====================================================================== */
.sec-head {
  display: flex; align-items: center; gap: 10px;
  margin: 8px 0 16px;
}
.sec-head .ic {
  font-size: 20px; color: var(--gold);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}
.sec-head h2 {
  font-size: 19px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
}
.sec-head .view-all {
  margin-left: auto;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  padding: 8px 16px; border-radius: 18px;
  background: var(--panel); border: 1px solid var(--line); color: var(--text-soft);
  transition: .18s;
}
.sec-head .view-all:hover { border-color: var(--gold); color:#fff; }

.grid6 {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
  margin-bottom: 36px;
}
.grid3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 36px;
}
.card {
  border-radius: 10px; overflow: hidden; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.card img { width: 100%; height: auto; display:block; }
.card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 14px 30px rgba(0,0,0,.55); }
.card.big:hover { transform: translateY(-4px); }

/* ======================================================================
   PROVIDERS
   ====================================================================== */
.providers {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 44px;
}
.providers img { width: 100%; opacity: .9; }

/* ======================================================================
   SEO CONTENT
   ====================================================================== */
.seo { max-width: 900px; }
.seo h1 {
  font-size: 32px; font-weight: 900; line-height: 1.2;
  margin: 10px 0 18px;
  background: linear-gradient(to bottom, #fff, var(--gold-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.seo .lead { font-size: 16px; color: #dfe4ff; margin-bottom: 30px; }

.seo section { margin-bottom: 40px; scroll-margin-top: 80px; }
.seo h2 {
  font-size: 23px; font-weight: 800; margin-bottom: 12px;
  position: relative; padding-left: 16px;
}
.seo h2::before {
  content:""; position:absolute; left:0; top:6px; bottom:6px; width:5px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
}
.seo h3 { font-size: 17px; font-weight: 700; color: var(--gold); margin: 18px 0 8px; }
.seo p { color: var(--text-soft); margin-bottom: 14px; font-size: 15px; }
.seo ul, .seo ol { margin: 0 0 16px 4px; padding-left: 22px; }
.seo li { color: var(--text-soft); margin-bottom: 8px; font-size: 15px; }
.seo li::marker { color: var(--gold); }
.seo strong { color: #fff; }
.seo a.inline { color: var(--gold); border-bottom: 1px dashed rgba(245,196,81,.5); }

.seo table {
  width: 100%; border-collapse: collapse; margin: 14px 0 8px;
  background: var(--bg-2); border-radius: 10px; overflow: hidden;
  border: 1px solid var(--line); font-size: 14px;
}
.seo thead th {
  background: linear-gradient(135deg, #1a2350, #141b40);
  color: var(--gold); font-weight: 800; text-align: left;
  padding: 12px 16px; text-transform: uppercase; font-size: 12px; letter-spacing: .5px;
  border-bottom: 1px solid var(--line);
}
.seo tbody td { padding: 11px 16px; border-bottom: 1px solid var(--line); color: var(--text-soft); }
.seo tbody tr:last-child td { border-bottom: none; }
.seo tbody tr:nth-child(even) { background: rgba(255,255,255,.015); }
.seo tbody tr:hover { background: rgba(47,107,255,.06); }
.seo tbody td:first-child { color: #fff; font-weight: 600; }

.seo .cta-inline {
  display:inline-flex; align-items:center; gap:8px; margin-top: 6px;
  padding: 13px 30px; border-radius: 12px; font-weight: 800; letter-spacing:.5px;
  text-transform: uppercase; font-size: 14px; color:#fff;
  background: linear-gradient(135deg, #3f7bff, #1a4fd6);
  box-shadow: 0 8px 22px rgba(47,107,255,.45);
  transition:.18s;
}
.seo .cta-inline:hover { transform: translateY(-2px); filter: brightness(1.1); }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 10px; margin-bottom: 10px; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 15px 18px; font-weight: 700; color: #fff;
  list-style: none; display:flex; justify-content: space-between; align-items:center;
  font-size: 15px;
}
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 22px; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .faq-body { padding: 14px 18px; color: var(--text-soft); font-size: 14.5px; }

/* ======================================================================
   FOOTER
   ====================================================================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 40px 28px 30px;
  color: var(--text-dim);
  font-size: 13px;
}
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 26px; }
.footer h4 { color:#fff; font-size: 13px; text-transform: uppercase; letter-spacing:1px; margin-bottom: 12px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer li a { color: var(--text-soft); transition:.15s; }
.footer li a:hover { color: var(--gold); }
.footer .brand-col img { height: 30px; margin-bottom: 12px; }
.age-badge {
  display:inline-flex; align-items:center; gap:6px; margin-top:10px;
  padding: 5px 12px; border-radius: 16px; font-weight:800; font-size:12px;
  background: var(--red); color:#fff;
}
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 20px;
  display:flex; flex-wrap:wrap; gap:14px; justify-content: space-between; align-items:center;
  font-size: 12px; color: var(--text-dim); line-height:1.6;
}
.footer-bottom .disclaimer { max-width: 720px; }

/* ======================================================================
   RESPONSIVE
   ====================================================================== */
.menu-toggle { display:none; }

@media (max-width: 1180px) {
  .grid6 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .sidebar {
    position: fixed; left: 0; top: 0; z-index: 100;
    transform: translateX(-100%); transition: transform .28s ease;
    box-shadow: 0 0 40px rgba(0,0,0,.6);
  }
  .sidebar.open { transform: translateX(0); }
  .menu-toggle {
    display: inline-flex; align-items:center; justify-content:center;
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--panel); border: 1px solid var(--line); color:#fff; font-size:18px;
    cursor:pointer;
  }
  .overlay {
    display:none; position: fixed; inset:0; background: rgba(0,0,0,.55); z-index:99;
  }
  .overlay.show { display:block; }
}
@media (max-width: 820px) {
  .grid6 { grid-template-columns: repeat(3, 1fr); }
  .grid3 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .content { padding: 18px 16px 50px; }
  .topbar { padding: 12px 16px; }
}
@media (max-width: 520px) {
  .grid6 { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr; }
  .seo h1 { font-size: 25px; }
  .btn-ghost { display:none; }
}

/* ============================================================
   Fil d'Ariane + pages internes informatives
   ============================================================ */
.breadcrumbs { margin: 4px 0 22px; }
.breadcrumbs ol {
  list-style: none; display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px; padding: 0; margin: 0;
  font-size: 13px; color: var(--text-dim);
}
.breadcrumbs a { color: var(--text-soft); text-decoration: none; transition: .18s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .bc-sep { color: var(--text-dim); opacity: .6; }
.breadcrumbs .bc-current { color: var(--text); font-weight: 600; }

.info-page {
  max-width: 860px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 38px 40px;
}
.info-head { border-bottom: 1px solid var(--line); padding-bottom: 20px; margin-bottom: 24px; }
.info-page h1 {
  font-size: 30px; line-height: 1.2; font-weight: 800;
  margin: 0 0 12px; color: #fff;
}
.info-lead { font-size: 16px; line-height: 1.65; color: var(--text-soft); margin: 0; }
.info-page h2 {
  font-size: 20px; font-weight: 700; color: #fff;
  margin: 30px 0 12px; padding-left: 12px;
  border-left: 3px solid var(--gold);
}
.info-page p { font-size: 15px; line-height: 1.75; color: var(--text-soft); margin: 0 0 14px; }
.info-page ul { margin: 0 0 16px; padding-left: 20px; }
.info-page li { font-size: 15px; line-height: 1.7; color: var(--text-soft); margin-bottom: 8px; }
.info-page a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(245,196,81,.35); transition: .18s; }
.info-page a:hover { color: #ffdd88; border-bottom-color: var(--gold); }
.info-page strong { color: #fff; }
.info-cta { margin-top: 26px; }
.info-cta .btn-primary { display: inline-block; padding: 13px 28px; font-size: 15px; font-weight: 700; border-radius: 12px; }

.topbar-home {
  display: none; width: 40px; height: 40px; flex-shrink: 0;
  align-items: center; justify-content: center;
  border-radius: 10px; background: var(--panel); border: 1px solid var(--line);
  color: var(--text-soft); font-size: 16px; text-decoration: none; transition: .18s;
}
.topbar-home:hover { color: var(--gold); border-color: var(--gold); }

@media (max-width: 900px) {
  .info-page { padding: 26px 20px 30px; }
  .info-page h1 { font-size: 25px; }
}
