﻿:root{
  --bg:#312121;
  --bg-deep:#221717;
  --surface:#3d2c2c;
  --surface-alt:#4a3434;
  --border:#5a4040;
  --gold-light:#f7dfa1;
  --gold:#e3bb65;
  --gold-dark:#a8791e;
  --wine:#7c3131;
  --wine-light:#a34848;
  --cream:#f3e9dc;
  --muted:#c9b3a6;
  --green:#4caf7d;
  --radius:16px;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg-deep);
  color:var(--cream);
}
.app{
  width:100%;
  background:linear-gradient(180deg,var(--bg) 0%,var(--bg-deep) 100%);
  min-height:100vh;
  position:relative;
  overflow-x:hidden;
  padding-bottom:84px;
}
.app.no-sticky{padding-bottom:0;}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
h1,h2,h3{font-family:Georgia,'Times New Roman',serif;letter-spacing:.2px;}
.gold-text{background:linear-gradient(135deg,var(--gold-light),var(--gold) 50%,var(--gold-dark));-webkit-background-clip:text;background-clip:text;color:transparent;}

/* Responsive containers */
.container{max-width:1200px;margin:0 auto;padding:0 18px;width:100%;}
section{max-width:1200px;margin:0 auto;padding:26px 18px;}
@media (min-width:900px){
  .app{padding-bottom:0;}
  section{padding:40px 32px;}
}

/* Ribbon / running text marquee */
.ribbon{
  background:linear-gradient(90deg,var(--wine),var(--wine-light));
  color:var(--gold-light);
  font-size:12.5px;
  font-weight:600;
  letter-spacing:.3px;
  padding:9px 0;
  overflow:hidden;
  white-space:nowrap;
  position:relative;
}
.marquee-track{
  display:inline-block;
  padding-left:100%;
  animation:marquee 50s linear infinite;
}
.ribbon:hover .marquee-track{
  animation-play-state:paused;
}
.marquee-track span{
  display:inline-block;
  padding:0 28px;
}
.marquee-track span::after{
  content:'✦';
  margin-left:28px;
  color:var(--gold);
}
@keyframes marquee{
  0%{transform:translateX(0);}
  100%{transform:translateX(-100%);}
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{animation:none;padding-left:0;}
}

/* Header */
header{
  position:sticky;top:0;z-index:50;
  background:rgba(35,16,18,.96);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 18px;
  max-width:1200px;margin:0 auto;
}
.logo{
  display:flex;align-items:center;gap:6px;
  font-size:20px;font-weight:800;
  font-family:Georgia,serif;
}
.logo img{height:64px;width:auto;}
.btn-play{
  background:linear-gradient(135deg,var(--gold-light),var(--gold) 55%,var(--gold-dark));
  color:#2b1d0e;
  font-weight:700;
  font-size:13px;
  padding:9px 16px;
  border-radius:999px;
  border:none;
  box-shadow:0 4px 14px rgba(227,187,101,.35);
  white-space:nowrap;
}
.header-right{display:flex;align-items:center;gap:18px;}
.nav-links{display:none;align-items:center;gap:22px;list-style:none;flex-wrap:wrap;}
.nav-links a{font-size:13.5px;font-weight:600;color:var(--muted);transition:color .15s ease;white-space:nowrap;}
.nav-links a:hover{color:var(--gold-light);}
.burger{
  display:flex;flex-direction:column;justify-content:center;gap:5px;
  width:34px;height:34px;cursor:pointer;
}
.burger span{display:block;height:2px;background:var(--gold-light);border-radius:2px;}
#nav-toggle{display:none;}
.mobile-nav{
  display:none;flex-direction:column;
  background:var(--surface);border-top:1px solid var(--border);
  padding:10px 18px 16px;
}
.mobile-nav a{
  padding:12px 4px;font-size:14px;font-weight:600;color:var(--cream);
  border-bottom:1px solid var(--border);
}
.mobile-nav a:last-child{border-bottom:none;}
#nav-toggle:checked ~ .mobile-nav{display:flex;}
@media (min-width:1100px){
  .nav-links{display:flex;}
  .burger{display:none;}
  .header-inner{padding:12px 32px;}
  .logo img{height:76px;}
  .footer-logo img{height:76px;}
}

/* Hero */
.hero{padding:22px 18px 10px;text-align:center;max-width:1200px;margin:0 auto;}
.hero-inner{display:flex;flex-direction:column;align-items:center;}
.hero-text{width:100%;}
.badge-flag{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--surface);
  border:1px solid var(--gold-dark);
  color:var(--gold-light);
  font-size:12px;font-weight:600;
  padding:6px 14px;border-radius:999px;
  margin-bottom:14px;
}
.hero h1{font-size:24px;line-height:1.3;margin-bottom:10px;}
.hero p{font-size:14px;color:var(--muted);line-height:1.6;margin-bottom:18px;}

.cta-primary{
  display:block;width:100%;
  background:linear-gradient(135deg,var(--gold-light),var(--gold) 50%,var(--gold-dark));
  color:#2b1d0e;
  font-weight:800;font-size:15.5px;
  padding:16px;border-radius:14px;
  border:none;
  box-shadow:0 8px 24px rgba(227,187,101,.4);
  animation:pulseGlow 2.4s ease-in-out infinite;
  text-align:center;
}
@keyframes pulseGlow{
  0%,100%{box-shadow:0 8px 24px rgba(227,187,101,.35);transform:scale(1);}
  50%{box-shadow:0 10px 32px rgba(227,187,101,.6);transform:scale(1.015);}
}
.trust-line{
  display:flex;justify-content:center;gap:14px;flex-wrap:wrap;
  margin-top:14px;font-size:11.5px;color:var(--muted);
}
.trust-line span{display:flex;align-items:center;gap:4px;}

/* Hero visual (desktop) */
.hero-visual{display:none;}
.hero-stack{position:relative;width:100%;max-width:380px;height:340px;margin:0 auto;}
.hero-stack img{
  position:absolute;width:180px;height:180px;object-fit:cover;
  border-radius:18px;border:2px solid var(--gold);
  box-shadow:0 16px 40px rgba(0,0,0,.5);
}
.hero-stack img:nth-child(1){top:0;left:20px;transform:rotate(-8deg);z-index:1;}
.hero-stack img:nth-child(2){top:40px;right:10px;transform:rotate(6deg);z-index:2;}
.hero-stack img:nth-child(3){bottom:0;left:70px;transform:rotate(-3deg);z-index:3;}
.hero-float-badge{
  position:absolute;top:-10px;right:-6px;z-index:4;
  background:linear-gradient(135deg,var(--gold-light),var(--gold-dark));
  color:#2b1d0e;font-weight:800;font-size:12px;
  padding:10px 14px;border-radius:999px;
  box-shadow:0 8px 20px rgba(0,0,0,.4);
  animation:pulseGlow 2.4s ease-in-out infinite;
}
@media (min-width:900px){
  .hero{padding:56px 32px;text-align:left;}
  .hero-inner{flex-direction:row;align-items:center;gap:48px;}
  .hero-text{width:52%;}
  .badge-flag{margin-bottom:18px;}
  .hero h1{font-size:40px;line-height:1.25;margin-bottom:16px;}
  .hero p{font-size:16px;margin-bottom:24px;}
  .cta-primary{display:inline-block;width:auto;padding:16px 32px;font-size:16px;}
  .trust-line{justify-content:flex-start;font-size:12.5px;}
  .hero-visual{display:block;width:48%;}
}

/* Trust badges row */
.badges-row{
  display:flex;gap:10px;overflow-x:auto;padding:16px 18px;
  scrollbar-width:none;max-width:1200px;margin:0 auto;
}
.badges-row::-webkit-scrollbar{display:none;}
.badge-card{
  flex:0 0 auto;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 14px;
  text-align:center;
  min-width:82px;
}
.badge-card .ic{font-size:20px;margin-bottom:4px;}
.badge-card .lb{font-size:10.5px;color:var(--muted);font-weight:600;}
@media (min-width:900px){
  .badges-row{overflow-x:visible;justify-content:center;padding:20px 32px;flex-wrap:wrap;}
  .badge-card{padding:14px 22px;min-width:110px;}
  .badge-card .ic{font-size:24px;}
  .badge-card .lb{font-size:12px;}
}

.promo-banner{text-align:center;}
.promo-banner a{display:inline-block;width:100%;max-width:420px;}
.promo-banner img{
  width:100%;height:auto;border-radius:20px;
  border:1px solid var(--gold-dark);
  box-shadow:0 16px 40px rgba(0,0,0,.5);
  transition:transform .2s ease;
}
.promo-banner a:hover img{transform:translateY(-4px);}

.section-title{font-size:19px;margin-bottom:6px;}
.section-sub{font-size:13px;color:var(--muted);margin-bottom:16px;line-height:1.6;}
@media (min-width:900px){
  .section-title{font-size:26px;margin-bottom:10px;}
  .section-sub{font-size:15px;}
}

/* Long-form guide content */
.article-wrap{background:var(--bg-deep);}
.guide-title{font-size:21px;line-height:1.35;margin-bottom:12px;}
.sub-title{font-size:15px;color:var(--gold-light);font-weight:700;margin:18px 0 8px;}
.bullet-list{list-style:none;padding:0;margin:0 0 14px;}
.bullet-list li{position:relative;padding-left:20px;font-size:13px;color:var(--muted);line-height:1.6;margin-bottom:6px;}
.bullet-list li::before{content:'✦';position:absolute;left:0;top:1px;color:var(--gold);font-size:11px;}
.mini-vol-grid{display:grid;grid-template-columns:1fr;gap:8px;margin-bottom:6px;}
.vol-card{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:10px 12px;}
.vol-card b{display:block;color:var(--gold-light);font-size:13px;margin-bottom:2px;}
.vol-card span{display:block;font-size:12px;color:var(--muted);}
.guide-divider{border:none;border-top:1px solid var(--border);margin:6px auto 22px;max-width:1200px;}
.toc-box{
  background:var(--surface);border:1px solid var(--gold-dark);
  border-radius:14px;padding:16px 18px;margin:18px 0 22px;
}
.toc-box h3{font-size:14px;color:var(--gold-light);margin-bottom:10px;letter-spacing:.3px;text-transform:uppercase;}
.toc-list{list-style:none;padding:0;margin:0;counter-reset:toc;}
.toc-list li{margin-bottom:9px;counter-increment:toc;}
.toc-list a{
  font-size:13px;color:var(--cream);display:flex;align-items:baseline;gap:8px;
  transition:color .15s ease;
}
.toc-list a:hover{color:var(--gold-light);}
.toc-list a::before{
  content:counter(toc);
  flex:0 0 auto;
  min-width:18px;height:18px;
  background:var(--gold-dark);color:#2b1d0e;
  border-radius:50%;font-size:10px;font-weight:800;
  display:inline-flex;align-items:center;justify-content:center;
}
@media (min-width:640px){
  .toc-list{columns:2;column-gap:24px;}
  .toc-list li{break-inside:avoid;}
}
.takeaways-box{
  background:linear-gradient(160deg,var(--surface),var(--surface-alt));
  border-left:4px solid var(--gold);
  border-radius:10px;
  padding:16px 18px;margin:20px 0;
}
.takeaways-box h3{font-size:14px;color:var(--gold-light);margin-bottom:10px;letter-spacing:.3px;text-transform:uppercase;}
.takeaways-list{list-style:none;padding:0;margin:0;}
.takeaways-list li{
  position:relative;padding-left:24px;
  font-size:13px;color:var(--cream);line-height:1.6;margin-bottom:8px;
}
.takeaways-list li:last-child{margin-bottom:0;}
.takeaways-list li::before{
  content:'✔';position:absolute;left:0;top:0;
  color:var(--gold);font-size:12px;font-weight:800;
}
@media (min-width:900px){
  .takeaways-list li{font-size:14px;}
}
@media (min-width:640px){
  .mini-vol-grid{grid-template-columns:repeat(3,1fr);}
}
@media (min-width:900px){
  .guide-title{font-size:32px;}
  .sub-title{font-size:18px;margin:24px 0 10px;}
  .bullet-list li{font-size:15px;}
}

/* Games grid */
.games-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:12px;
}
@media (min-width:640px){
  .games-grid{grid-template-columns:repeat(3,1fr);}
}
@media (min-width:900px){
  .games-grid{grid-template-columns:repeat(5,1fr);gap:18px;}
  .game-tile:hover{transform:translateY(-4px);box-shadow:0 14px 30px rgba(0,0,0,.45);}
}
.game-tile{
  aspect-ratio:1/1;
  border-radius:14px;
  position:relative;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 6px 16px rgba(0,0,0,.35);
  transition:transform .15s ease;
}
.game-tile:active{transform:scale(.96);}
.game-tile .art{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  font-size:46px;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.5));
}
.game-tile img.art-img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
}
.game-tile .provider-tag{
  position:absolute;top:6px;right:6px;
  background:#c62828;color:#fff;
  font-size:8.5px;font-weight:800;letter-spacing:.3px;
  padding:2px 6px;border-radius:5px;
  box-shadow:0 2px 4px rgba(0,0,0,.4);
  z-index:2;
}
.game-tile .title-banner{
  position:absolute;left:0;right:0;bottom:0;
  background:linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,.55) 30%,rgba(0,0,0,.85) 100%);
  padding:16px 8px 8px;
}
.game-tile .title-banner span{
  display:block;text-align:center;
  font-size:11.5px;font-weight:800;text-transform:uppercase;letter-spacing:.2px;
  color:var(--gold-light);
  text-shadow:0 1px 3px rgba(0,0,0,.8);
}
.g1{background:radial-gradient(circle at 50% 30%,#2f6b4a,#123018);}
.g2{background:radial-gradient(circle at 50% 30%,#1f5a7a,#0e2c3d);}
.g3{background:radial-gradient(circle at 50% 30%,#1f6b3a,#0e3018);}
.g4{background:radial-gradient(circle at 50% 30%,#3a6b1f,#1a3010);}
.g5{background:radial-gradient(circle at 50% 30%,#7a3a1f,#3d1c0e);}
.g6{background:radial-gradient(circle at 50% 30%,#5a3a1f,#2d1c0e);}
.g7{background:radial-gradient(circle at 50% 30%,#1f4a6b,#0e2436);}
.g8{background:radial-gradient(circle at 50% 30%,#2b2b6b,#141436);}
.g9{background:radial-gradient(circle at 50% 30%,#1f6b5a,#0e3630);}
.g10{background:radial-gradient(circle at 50% 30%,#5a1f6b,#2d0e36);}

.see-more{
  display:block;text-align:center;margin-top:16px;
  font-size:13px;font-weight:700;color:var(--gold-light);
  border:1px solid var(--gold-dark);border-radius:10px;padding:12px;
}

/* Steps */
.steps{display:flex;flex-direction:column;gap:12px;}
.step-card{
  display:flex;gap:12px;align-items:flex-start;
  background:var(--surface);border:1px solid var(--border);
  border-radius:12px;padding:14px;
}
@media (min-width:640px){
  .steps{display:grid;grid-template-columns:repeat(2,1fr);}
}
@media (min-width:900px){
  .steps{grid-template-columns:repeat(4,1fr);gap:16px;}
}
.step-num{
  flex:0 0 30px;height:30px;border-radius:50%;
  background:linear-gradient(135deg,var(--gold-light),var(--gold-dark));
  color:#2b1d0e;font-weight:800;font-size:13px;
  display:flex;align-items:center;justify-content:center;
}
.step-card h3{font-size:14px;margin-bottom:4px;color:var(--gold-light);}
.step-card p{font-size:12.5px;color:var(--muted);line-height:1.5;}

/* Feature cards */
.feature-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.feature-card{
  background:linear-gradient(160deg,var(--surface),var(--surface-alt));
  border:1px solid var(--border);border-radius:14px;padding:14px;
}
.feature-card .ic{font-size:22px;margin-bottom:8px;}
.feature-card h3{font-size:13.5px;color:var(--gold-light);margin-bottom:4px;}
.feature-card p{font-size:11.5px;color:var(--muted);line-height:1.5;}
@media (min-width:900px){
  .feature-grid{grid-template-columns:repeat(4,1fr);gap:16px;}
  .feature-card{padding:20px;}
  .feature-card .ic{font-size:28px;}
  .feature-card h3{font-size:15px;}
  .feature-card p{font-size:13px;}
}

/* Table */
.rtp-table{width:100%;border-collapse:collapse;font-size:12.5px;background:var(--surface);border-radius:12px;overflow:hidden;}
.rtp-table th{background:var(--surface-alt);color:var(--gold-light);padding:10px 8px;text-align:left;font-size:11.5px;}
.rtp-table td{padding:10px 8px;border-top:1px solid var(--border);color:var(--muted);}
.rtp-table tr td:first-child{color:var(--cream);font-weight:600;}
@media (min-width:900px){
  .rtp-table{max-width:100%;margin:0;font-size:14px;}
  .rtp-table th, .rtp-table td{padding:14px 16px;}
}

/* Payment methods */
.pay-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;}
.pay-chip{
  background:var(--surface);border:1px solid var(--border);
  border-radius:10px;padding:12px 4px;text-align:center;
  font-size:10.5px;font-weight:700;color:var(--cream);
}
.pay-chip .ic{font-size:18px;display:block;margin-bottom:4px;}
@media (min-width:900px){
  .pay-grid{max-width:100%;margin:0;gap:16px;}
  .pay-chip{padding:20px 8px;font-size:13px;}
  .pay-chip .ic{font-size:24px;}
}

/* Two-column layout (RTP + Payment Methods) */
@media (min-width:900px){
  .two-col{
    display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start;
    max-width:1200px;margin:0 auto;padding:0 32px;
  }
  .two-col section{padding:0;max-width:none;margin:0;}
}

/* Testimonials */
.testi-card{
  background:var(--surface);border:1px solid var(--border);
  border-radius:14px;padding:14px;margin-bottom:10px;
}
@media (min-width:900px){
  .testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
  .testi-grid .testi-card{margin-bottom:0;}
}
.testi-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:6px;}
.testi-name{font-size:13px;font-weight:700;color:var(--gold-light);}
.testi-loc{font-size:10.5px;color:var(--muted);}
.stars{color:var(--gold);font-size:12px;}
.testi-card p{font-size:12.5px;color:var(--muted);line-height:1.5;}

/* FAQ */
details{
  background:var(--surface);border:1px solid var(--border);
  border-radius:12px;margin-bottom:8px;overflow:hidden;
}
summary{
  padding:14px;font-size:13.5px;font-weight:600;color:var(--cream);
  cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;
}
summary::-webkit-details-marker{display:none;}
summary::after{content:'+';font-size:18px;color:var(--gold);}
details[open] summary::after{content:'−';}
details p{padding:0 14px 14px;font-size:12.5px;color:var(--muted);line-height:1.6;}
#scatter-faq{max-width:760px;}
@media (min-width:900px){
  summary{padding:18px;font-size:15px;}
  details p{font-size:14px;padding:0 18px 18px;}
}

/* Footer */
footer{padding:24px 18px 30px;border-top:1px solid var(--border);}
.footer-inner{max-width:1200px;margin:0 auto;}
.footer-logo{display:flex;align-items:center;gap:6px;font-size:18px;font-weight:800;font-family:Georgia,serif;margin-bottom:10px;}
.footer-logo img{height:64px;width:auto;}
.disclaimer{font-size:10.5px;color:var(--muted);line-height:1.7;margin-bottom:14px;}
.footer-links{display:flex;flex-wrap:wrap;gap:6px;font-size:11px;color:var(--gold-light);margin-bottom:14px;}
.footer-links a{display:inline-flex;align-items:center;padding:10px 4px;min-height:24px;}
.age-row{display:flex;align-items:center;gap:10px;margin-bottom:14px;}
.age-badge{
  width:34px;height:34px;border-radius:8px;background:var(--wine);
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:13px;
  border:1px solid var(--gold-dark);color:var(--gold-light);
}
.copyright{font-size:10.5px;color:#8a7a72;}
@media (min-width:900px){
  footer{padding:40px 32px;}
  .footer-top{display:flex;justify-content:space-between;align-items:flex-start;gap:40px;}
  .footer-about{max-width:520px;}
  .footer-links{flex-direction:column;gap:10px;font-size:13px;}
}

/* Floating bottom CTA (centered on all devices) */
.sticky-cta{
  position:fixed;left:50%;transform:translateX(-50%);
  bottom:16px;bottom:calc(16px + env(safe-area-inset-bottom));
  display:inline-block;width:auto;max-width:calc(100% - 24px);
  background:linear-gradient(120deg,var(--gold-light),var(--gold) 30%,var(--wine-light) 65%,var(--gold-dark));
  background-size:220% 220%;
  border-radius:999px;
  padding:4px;
  box-shadow:0 18px 44px rgba(0,0,0,.6);
  z-index:60;
  animation:ctaFloatGlow 2.4s ease-in-out infinite, ctaGradientShift 5s ease-in-out infinite;
}
.sticky-cta a{
  display:flex;align-items:center;justify-content:center;gap:10px;
  position:relative;overflow:hidden;
  background:rgba(20,12,12,.96);
  color:var(--gold-light);font-weight:800;font-size:15px;
  white-space:nowrap;
  padding:16px 22px;border-radius:999px;
  text-shadow:0 1px 2px rgba(0,0,0,.4);
}
.sticky-cta a::before{content:'🎁';font-size:19px;}
.sticky-cta a::after{
  content:'';position:absolute;top:0;left:-60%;width:40%;height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.4),transparent);
  transform:skewX(-20deg);
  animation:ctaShine 3s ease-in-out infinite;
}
@keyframes ctaFloatGlow{
  0%,100%{transform:translateX(-50%) scale(1);box-shadow:0 18px 44px rgba(0,0,0,.6),0 0 0 rgba(227,187,101,0);}
  50%{transform:translateX(-50%) scale(1.035);box-shadow:0 18px 44px rgba(0,0,0,.6),0 0 32px rgba(227,187,101,.75);}
}
@keyframes ctaGradientShift{
  0%,100%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
}
@keyframes ctaShine{
  0%{left:-60%;}
  40%{left:130%;}
  100%{left:130%;}
}
@media (prefers-reduced-motion: reduce){
  .sticky-cta{animation:none;}
  .sticky-cta a::after{animation:none;display:none;}
}
@media (min-width:900px){
  .sticky-cta{bottom:28px;}
  .sticky-cta a{font-size:17px;padding:18px 28px;}
}

/* Simple info pages (About / Contact / Legal) */
.page-hero{padding:32px 18px 8px;text-align:center;max-width:1200px;margin:0 auto;}
.page-hero h1{font-size:26px;line-height:1.3;margin-bottom:8px;}
.page-hero p{font-size:13px;color:var(--muted);}
@media (min-width:900px){
  .page-hero{padding:56px 32px 12px;}
  .page-hero h1{font-size:36px;}
  .page-hero p{font-size:15px;}
}
.contact-card{
  background:var(--surface);border:1px solid var(--border);
  border-radius:14px;padding:16px 18px;margin-bottom:14px;
}
.contact-card b{color:var(--gold-light);display:block;margin-bottom:4px;font-size:13px;}
.contact-card a, .contact-card span{font-size:13px;color:var(--cream);}
.social-links{display:flex;flex-wrap:wrap;gap:10px;margin-top:8px;}
.social-links a{
  background:var(--surface);border:1px solid var(--gold-dark);color:var(--gold-light);
  font-size:12.5px;font-weight:600;padding:8px 14px;border-radius:999px;
}
.social-links a:hover{background:var(--surface-alt);}
.legal-updated{font-size:11.5px;color:var(--muted);font-style:italic;margin-bottom:18px;}

