/* ===========================================================
   ALOHA WIN SLOTS — home page styles
   Plain CSS. No framework, no build step, no preprocessor.
   Edit this file directly and reload.
   =========================================================== */

/* ---- Font ----------------------------------------------------------------
   Outfit is self-hosted rather than pulled from Google. Three reasons: it is
   one 32 KB request instead of two cross-origin ones, the page cannot be
   slowed down by somebody else's server, and no visitor data leaves for a
   third party just to render text. It is a variable font, so this single
   file covers every weight from 400 to 800. */
@font-face{
  font-family:'Outfit';
  src:url('/fonts/outfit-latin.woff2') format('woff2-variations'),
      url('/fonts/outfit-latin.woff2') format('woff2');
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}

/* ---- Palette -------------------------------------------------------------
   Tropical night: deep ocean base, turquoise water, coral sunset, gold sand.
   Every colour used on the page is declared here, so re-theming later means
   editing this block and nothing else. */
:root{
  --ocean-900:#04121c;      /* page background            */
  --ocean-800:#071d2b;      /* alternating section bands  */
  --ocean-700:#0b2434;      /* cards                      */
  --ocean-600:#103246;      /* borders, inputs            */

  --teal:#2dd4bf;
  --teal-dim:#14b8a6;
  --coral:#ff6b4a;
  --sunset:#ff9a3c;
  --gold:#fbbf24;
  --palm:#22c55e;

  --ink:#ffffff;
  --ink-soft:#c2dbe6;
  --ink-mute:#7fa3b5;

  --sun-grad:linear-gradient(135deg,var(--coral),var(--sunset));
  --sea-grad:linear-gradient(135deg,var(--teal-dim),var(--teal));

  --radius:16px;
  --shell:1200px;
}

*,*::before,*::after{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--ocean-900);
  color:var(--ink);
  font-family:'Outfit',system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}

.shell{width:100%;max-width:var(--shell);margin:0 auto;padding:0 18px}

/* Utility: the small coloured label that sits above most section titles */
.eyebrow{
  font-size:13px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;
  color:var(--teal);margin:0 0 10px;
}
.sect-title{
  font-size:clamp(26px,5.5vw,42px);font-weight:800;line-height:1.15;margin:0 0 14px;
}
.sect-sub{color:var(--ink-mute);max-width:620px;margin:0 auto 34px;font-size:15px}
.center{text-align:center}

/* Gradient text, used for the accent words in headings */
.grad{background:var(--sun-grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.grad-sea{background:var(--sea-grad);-webkit-background-clip:text;background-clip:text;color:transparent}

/* ---- Buttons ------------------------------------------------------------ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  padding:14px 30px;border-radius:999px;font-weight:700;font-size:16px;
  transition:transform .15s ease,box-shadow .15s ease,opacity .15s ease;
  white-space:nowrap;
}
.btn:active{transform:scale(.97)}
.btn-sun{background:var(--sun-grad);color:#25120a;box-shadow:0 8px 26px rgba(255,107,74,.34)}
.btn-sun:hover{box-shadow:0 12px 34px rgba(255,107,74,.46)}
.btn-sea{background:var(--sea-grad);color:#042224;box-shadow:0 8px 26px rgba(20,184,166,.3)}
.btn-ghost{border:1.5px solid var(--ocean-600);color:var(--ink-soft)}
.btn-ghost:hover{border-color:var(--teal);color:var(--teal)}
.btn-lg{padding:17px 44px;font-size:17px}

/* ---- Header -------------------------------------------------------------
   The reference site uses a notched centre panel behind the logo. Same idea
   here, cut with clip-path so it costs no image. */
.hdr{
  position:fixed;top:0;left:0;right:0;z-index:80;
  background:rgba(4,18,28,.82);backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.hdr-in{display:flex;align-items:center;justify-content:space-between;height:66px;position:relative}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;font-size:18px;letter-spacing:-.01em}
.brand img{width:38px;height:38px;border-radius:50%}
.brand span{color:var(--ink)}
.brand em{font-style:normal;color:var(--gold)}

.nav{display:none;gap:30px;align-items:center}
.nav a{font-size:15px;color:var(--ink-soft);font-weight:500;transition:color .15s}
.nav a:hover{color:var(--teal)}
.hdr-cta{display:none}

.burger{
  width:42px;height:42px;border-radius:11px;background:var(--ocean-700);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4.5px;
  border:1px solid var(--ocean-600);
}
.burger i{display:block;width:18px;height:2px;background:var(--ink);border-radius:2px;transition:.25s}
.burger.on i:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.burger.on i:nth-child(2){opacity:0}
.burger.on i:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

/* Slide-down mobile menu */
.mnav{
  position:fixed;top:66px;left:0;right:0;z-index:79;
  background:var(--ocean-800);border-bottom:1px solid var(--ocean-600);
  transform:translateY(-120%);
  /* visibility, not just the transform: a translated panel can still be
     reachable by keyboard and still shows up in full-page captures. The
     delay lets the slide-out finish before it disappears. */
  visibility:hidden;
  transition:transform .3s cubic-bezier(.4,0,.2,1),visibility 0s linear .3s;
  padding:14px 18px 22px;
}
.mnav.on{transform:translateY(0);visibility:visible;transition-delay:0s,0s}
.mnav a{display:block;padding:13px 4px;border-bottom:1px solid rgba(255,255,255,.05);font-weight:600}
.mnav a:last-of-type{border-bottom:0}
.mnav .btn{width:100%;margin-top:14px}

/* ---- Hero --------------------------------------------------------------- */
.hero{position:relative;padding:112px 0 64px;overflow:hidden;min-height:92vh;display:flex;align-items:center}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:70% 50%}
/* Two washes: one to darken for contrast, one to pull the brand colours in */
.hero-bg::after{
  content:'';position:absolute;inset:0;
  background:
    linear-gradient(to bottom,rgba(4,18,28,.72) 0%,rgba(4,18,28,.42) 40%,var(--ocean-900) 97%),
    linear-gradient(105deg,rgba(4,18,28,.94) 8%,rgba(4,18,28,.55) 52%,rgba(255,107,74,.10) 100%);
}
.hero-in{position:relative;z-index:2;width:100%;text-align:center}

.bonus-pill{
  display:inline-flex;align-items:center;gap:11px;
  background:var(--sun-grad);color:#25120a;
  padding:9px 20px 9px 10px;border-radius:999px;margin-bottom:26px;
  box-shadow:0 8px 28px rgba(255,107,74,.36);
}
.bonus-pill b{display:block;font-size:15px;line-height:1.15;font-weight:800}
.bonus-pill small{display:block;font-size:11.5px;opacity:.82;font-weight:600}
.bonus-ico{
  width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.9);
  display:grid;place-items:center;font-size:18px;flex:0 0 auto;
}

.hero h1{
  font-size:clamp(32px,8.2vw,62px);font-weight:800;line-height:1.1;
  margin:0 0 18px;letter-spacing:-.02em;
}
.hero h1 .l2{color:var(--ink-soft)}
.hero p.lede{
  color:var(--ink-mute);font-size:16px;max-width:560px;margin:0 auto 30px;
}
.hero-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

.proof{display:flex;align-items:center;justify-content:center;gap:14px;margin-top:34px}
.faces{display:flex}
.faces i{
  width:40px;height:40px;border-radius:50%;border:2.5px solid var(--ocean-900);
  margin-left:-12px;display:grid;place-items:center;font-size:17px;font-style:normal;
  background:var(--ocean-700);
}
.faces i:first-child{margin-left:0}
.proof b{display:block;font-size:20px;font-weight:800;line-height:1.1}
.proof span{font-size:13px;color:var(--ink-mute)}

/* ---- Trust strip -------------------------------------------------------- */
.trust{background:var(--ocean-800);border-block:1px solid var(--ocean-600);padding:26px 0}
.trust-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px 14px;text-align:center}
.trust-grid b{display:block;font-size:22px;font-weight:800;background:var(--sea-grad);
  -webkit-background-clip:text;background-clip:text;color:transparent}
.trust-grid span{font-size:12.5px;color:var(--ink-mute)}

/* ---- Sections ----------------------------------------------------------- */
.sect{padding:64px 0}
.sect-alt{background:var(--ocean-800)}

/* ---- Game grid ---------------------------------------------------------- */
.g-tools{display:flex;gap:10px;margin:0 auto 26px;max-width:560px}
.g-search{
  flex:1;display:flex;align-items:center;gap:9px;background:var(--ocean-700);
  border:1px solid var(--ocean-600);border-radius:999px;padding:11px 18px;
}
.g-search input{
  flex:1;background:none;border:0;color:var(--ink);font-size:15px;outline:none;min-width:0;
}
.g-search input::placeholder{color:var(--ink-mute)}

.games{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.gcard{
  background:var(--ocean-700);border:1px solid var(--ocean-600);
  border-radius:var(--radius);overflow:hidden;position:relative;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.gcard:hover{transform:translateY(-4px);border-color:var(--teal);
  box-shadow:0 14px 34px rgba(0,0,0,.45)}
.gcard-img{position:relative;aspect-ratio:1/1;background:var(--ocean-600);overflow:hidden}
.gcard-img img{width:100%;height:100%;object-fit:cover}
.hot{
  position:absolute;top:8px;left:8px;background:var(--sun-grad);color:#25120a;
  font-size:10.5px;font-weight:800;padding:3px 9px;border-radius:999px;
  letter-spacing:.05em;text-transform:uppercase;
}
.gcard-body{padding:11px 12px 13px}
.gcard h3{font-size:14px;font-weight:700;margin:0 0 9px;white-space:nowrap;
  overflow:hidden;text-overflow:ellipsis}
.gcard .btn{width:100%;padding:9px 0;font-size:13.5px;border-radius:10px}

.g-more{display:flex;justify-content:center;margin-top:30px}
.g-empty{text-align:center;color:var(--ink-mute);padding:40px 0;display:none}

/* ---- Steps -------------------------------------------------------------- */
.steps{display:grid;gap:16px}
.step{
  background:var(--ocean-700);border:1px solid var(--ocean-600);
  border-radius:var(--radius);padding:26px 22px;position:relative;
}
.step-n{
  width:46px;height:46px;border-radius:14px;background:var(--sea-grad);
  color:#042224;font-weight:800;font-size:19px;display:grid;place-items:center;margin-bottom:15px;
}
.step h3{margin:0 0 8px;font-size:18px;font-weight:700}
.step p{margin:0;color:var(--ink-mute);font-size:14.5px}

/* ---- Feature cards ------------------------------------------------------ */
.feats{display:grid;gap:15px}
.feat{
  background:var(--ocean-700);border:1px solid var(--ocean-600);
  border-radius:var(--radius);padding:24px 20px;
}
.feat-ico{font-size:28px;margin-bottom:12px}
.feat h3{margin:0 0 7px;font-size:17px;font-weight:700}
.feat p{margin:0;color:var(--ink-mute);font-size:14.5px}

/* ---- Payments ----------------------------------------------------------- */
.pays{display:flex;flex-wrap:wrap;gap:10px;justify-content:center}
.pay{
  background:var(--ocean-700);border:1px solid var(--ocean-600);border-radius:12px;
  padding:11px 18px;font-size:14px;font-weight:600;color:var(--ink-soft);
  display:flex;align-items:center;gap:8px;
}

/* ---- FAQ ---------------------------------------------------------------- */
.faq{max-width:780px;margin:0 auto}
.qa{border-bottom:1px solid var(--ocean-600)}
.qa-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:19px 2px;text-align:left;font-weight:600;font-size:16px;
}
.qa-q i{
  flex:0 0 auto;width:26px;height:26px;border-radius:50%;background:var(--sun-grad);
  color:#25120a;display:grid;place-items:center;font-style:normal;font-size:14px;
  font-weight:800;transition:transform .25s;
}
.qa.on .qa-q i{transform:rotate(45deg)}
.qa-a{max-height:0;overflow:hidden;transition:max-height .3s ease}
.qa-a p{margin:0 0 19px;color:var(--ink-mute);font-size:15px}

/* ---- CTA band ----------------------------------------------------------- */
.cta{
  position:relative;text-align:center;padding:66px 0;overflow:hidden;
  background:linear-gradient(135deg,rgba(255,107,74,.13),rgba(45,212,191,.10));
  border-block:1px solid var(--ocean-600);
}
.cta h2{font-size:clamp(25px,5.5vw,38px);font-weight:800;margin:0 0 14px;line-height:1.16}
.cta p{color:var(--ink-soft);max-width:520px;margin:0 auto 28px}

/* ---- Footer ------------------------------------------------------------- */
/* Extra bottom padding keeps the last row clear of the floating chat button,
   which sits 16px from the bottom on small screens. */
.ftr{background:var(--ocean-800);border-top:1px solid var(--ocean-600);padding:46px 0 92px}
@media(min-width:600px){.ftr{padding-bottom:30px}}
.ftr-top{display:grid;gap:30px;margin-bottom:32px}
.ftr-brand p{color:var(--ink-mute);font-size:14px;margin:13px 0 0;max-width:330px}
.ftr h4{font-size:14px;font-weight:700;margin:0 0 13px;letter-spacing:.06em;
  text-transform:uppercase;color:var(--ink)}
.ftr ul{list-style:none;padding:0;margin:0}
.ftr li{margin-bottom:9px}
.ftr li a{color:var(--ink-mute);font-size:14.5px;transition:color .15s}
.ftr li a:hover{color:var(--teal)}

/* Compliance block — legally required, must stay visible on every page */
.compliance{
  background:var(--ocean-900);border:1px solid var(--ocean-600);border-radius:var(--radius);
  padding:20px;margin-bottom:26px;
}
.compliance p{margin:0 0 9px;font-size:13px;color:var(--ink-mute);line-height:1.65}
.compliance p:last-child{margin-bottom:0}
.compliance b{color:var(--gold)}
.age-badge{
  display:inline-grid;place-items:center;width:42px;height:42px;border-radius:50%;
  border:2px solid var(--coral);color:var(--coral);font-weight:800;font-size:13px;
  float:left;margin:0 14px 6px 0;
}
.ftr-btm{
  border-top:1px solid var(--ocean-600);padding-top:20px;
  display:flex;flex-direction:column;gap:12px;align-items:center;text-align:center;
}
.ftr-btm small{color:var(--ink-mute);font-size:13px}
.socials{display:flex;gap:10px}
.socials a{
  width:38px;height:38px;border-radius:11px;background:var(--ocean-700);
  border:1px solid var(--ocean-600);display:grid;place-items:center;font-size:16px;
  transition:.15s;
}
.socials a:hover{border-color:var(--teal);transform:translateY(-2px)}

/* ---- Floating chat ------------------------------------------------------ */
.chat-fab{
  position:fixed;right:16px;bottom:16px;z-index:70;
  width:56px;height:56px;border-radius:50%;background:var(--sun-grad);
  display:grid;place-items:center;font-size:24px;
  box-shadow:0 10px 30px rgba(255,107,74,.44);
}
.chat-fab:active{transform:scale(.94)}

/* ---- Age gate ----------------------------------------------------------- */
.gate{
  position:fixed;inset:0;z-index:200;background:var(--ocean-900);
  display:grid;place-items:center;padding:22px;text-align:center;
}
.gate-card{max-width:400px}
.gate img{width:88px;height:88px;border-radius:50%;margin:0 auto 20px}
.gate h2{font-size:25px;font-weight:800;margin:0 0 12px}
.gate p{color:var(--ink-mute);font-size:14.5px;margin:0 0 24px}
.gate .btn{width:100%;margin-bottom:11px}
.gate small{display:block;color:var(--ink-mute);font-size:12px;margin-top:16px;line-height:1.6}

/* =========================================================================
   Wider screens. Mobile is the default above; these only add.
   ========================================================================= */
@media(min-width:600px){
  .games{grid-template-columns:repeat(3,1fr)}
  .trust-grid{grid-template-columns:repeat(4,1fr)}
  .steps{grid-template-columns:repeat(3,1fr)}
  .feats{grid-template-columns:repeat(2,1fr)}
  .ftr-btm{flex-direction:row;justify-content:space-between}
}

@media(min-width:900px){
  .shell{padding:0 28px}
  .nav{display:flex}
  .hdr-cta{display:inline-flex}
  .burger{display:none}
  .mnav{display:none}
  .hero{padding:130px 0 80px;min-height:88vh}
  .hero-in{text-align:left}
  .hero p.lede{margin-left:0}
  .hero-actions{justify-content:flex-start}
  .proof{justify-content:flex-start}
  .sect{padding:86px 0}
  .games{grid-template-columns:repeat(6,1fr)}
  .feats{grid-template-columns:repeat(4,1fr)}
  .ftr-top{grid-template-columns:2fr 1fr 1fr 1fr}
  .sect-sub{margin-inline:auto}
}

/* Respect the reader who asked for less motion */
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important}
  html{scroll-behavior:auto}
}

/* =========================================================================
   LIVE CHAT PANEL
   Full screen on a phone, a floating card on a desktop.
   ========================================================================= */
.chatp{
  position:fixed;z-index:120;inset:0;
  background:var(--ocean-800);
  display:flex;flex-direction:column;
  transform:translateY(100%);visibility:hidden;
  transition:transform .32s cubic-bezier(.4,0,.2,1),visibility 0s linear .32s;
}
.chatp.on{transform:translateY(0);visibility:visible;transition-delay:0s,0s}
body.chat-open{overflow:hidden}

.chatp-head{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:14px 16px;background:var(--ocean-700);
  border-bottom:1px solid var(--ocean-600);flex:0 0 auto;
}
.chatp-who{display:flex;align-items:center;gap:11px;min-width:0}
.chatp-av{
  width:40px;height:40px;border-radius:50%;background:var(--sea-grad);
  display:grid;place-items:center;font-size:20px;flex:0 0 auto;
}
.chatp-who b{display:block;font-size:15.5px;font-weight:700}
.chatp-who small{display:block;font-size:12.5px;color:var(--ink-mute)}
.chatp-who small.on{color:var(--palm)}
.chatp-who small.on::before{
  content:'';display:inline-block;width:7px;height:7px;border-radius:50%;
  background:var(--palm);margin-right:6px;vertical-align:middle;
}
.chatp-x{
  width:36px;height:36px;border-radius:10px;background:var(--ocean-600);
  font-size:15px;flex:0 0 auto;
}

.chatp-body{
  flex:1;overflow-y:auto;padding:18px 14px;
  display:flex;flex-direction:column;gap:10px;
  -webkit-overflow-scrolling:touch;
}

.cmsg{
  max-width:82%;padding:10px 13px;border-radius:15px;font-size:14.5px;
  line-height:1.5;word-break:break-word;position:relative;
}
.cmsg time{display:block;font-size:10.5px;opacity:.6;margin-top:4px}
.cmsg-them{
  align-self:flex-start;background:var(--ocean-700);
  border:1px solid var(--ocean-600);border-bottom-left-radius:5px;
}
.cmsg-me{
  align-self:flex-end;background:var(--sea-grad);color:#042224;
  border-bottom-right-radius:5px;
}
.cmsg-img{
  display:block;max-width:100%;border-radius:10px;margin-bottom:6px;
  background:var(--ocean-600);
}
.cmsg-doc{
  display:inline-block;padding:8px 12px;background:rgba(0,0,0,.2);
  border-radius:9px;font-size:13.5px;margin-bottom:5px;
}

.chatp-file{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:9px 16px;background:var(--ocean-700);
  border-top:1px solid var(--ocean-600);font-size:13px;color:var(--ink-soft);
}
.chatp-file button{font-size:14px;color:var(--ink-mute)}

.chatp-foot{
  display:flex;align-items:center;gap:9px;padding:12px 14px;
  background:var(--ocean-700);border-top:1px solid var(--ocean-600);
  flex:0 0 auto;padding-bottom:calc(12px + env(safe-area-inset-bottom));
}
.chatp-clip{
  width:40px;height:40px;border-radius:11px;background:var(--ocean-600);
  display:grid;place-items:center;font-size:17px;cursor:pointer;flex:0 0 auto;
}
#chat-input{
  flex:1;min-width:0;background:var(--ocean-600);border:1px solid var(--ocean-600);
  border-radius:999px;padding:11px 17px;color:var(--ink);font-size:15px;outline:none;
}
#chat-input:focus{border-color:var(--teal)}
#chat-input::placeholder{color:var(--ink-mute)}
.chatp-send{
  width:42px;height:42px;border-radius:50%;background:var(--sun-grad);
  color:#25120a;font-size:16px;flex:0 0 auto;
}

@media(min-width:720px){
  .chatp{
    inset:auto 20px 20px auto;width:392px;height:min(620px,82vh);
    border-radius:20px;overflow:hidden;border:1px solid var(--ocean-600);
    box-shadow:0 26px 70px rgba(0,0,0,.6);
  }
  body.chat-open{overflow:auto}
}

/* ---- Toasts -------------------------------------------------------------
   Used for anything the player must actually notice, such as an attachment
   that was refused. Sits above the chat panel deliberately. */
.toast{
  position:fixed;left:50%;bottom:86px;z-index:200;
  transform:translate(-50%,16px);opacity:0;
  background:var(--ocean-700);border:1px solid var(--ocean-600);
  color:var(--ink);padding:12px 20px;border-radius:12px;
  font-size:14px;font-weight:500;max-width:calc(100% - 32px);
  box-shadow:0 12px 34px rgba(0,0,0,.5);
  transition:opacity .25s,transform .25s;pointer-events:none;text-align:center;
}
.toast.on{opacity:1;transform:translate(-50%,0)}
.toast-error{border-color:var(--coral);color:#ffd9cf}
.toast-success{border-color:var(--palm);color:#c9f7dc}

/* `display:flex` above beats the plain hidden attribute, which left the
   attachment bar visible with nothing in it. */
.chatp-file[hidden]{display:none}

/* A styled element with display:grid/flex beats the plain hidden attribute,
   so panels stayed on screen after being 'hidden'. This has bitten twice
   now (the chat attachment bar, then the admin tab panes) - make the
   attribute authoritative everywhere. */
[hidden]{display:none !important}

/* ---- Two buttons per game card: chat for an ID, wallet for money ---- */
.gcard-btns{display:flex;flex-direction:column;gap:6px}
.gcard-btns .btn{width:100%;padding:8px 0;font-size:12.5px;border-radius:9px}

/* ---- Deposit / Cashout entry points ---- */
.wallet-cta{display:grid;gap:14px;max-width:560px;margin:0 auto}
.wcta{
  display:block;padding:24px 20px;border-radius:var(--radius);
  background:var(--ocean-700);border:1px solid var(--ocean-600);
  transition:transform .16s,border-color .16s,box-shadow .16s;text-align:center;
}
.wcta:hover{transform:translateY(-3px);box-shadow:0 14px 34px rgba(0,0,0,.42)}
.wcta-in:hover{border-color:var(--palm)}
.wcta-out:hover{border-color:var(--coral)}
.wcta-ico{
  display:grid;place-items:center;width:48px;height:48px;border-radius:50%;
  margin:0 auto 12px;font-size:22px;font-weight:800;
}
.wcta-in .wcta-ico{background:rgba(34,197,94,.16);color:var(--palm)}
.wcta-out .wcta-ico{background:rgba(255,107,74,.16);color:var(--coral)}
.wcta b{display:block;font-size:18px;font-weight:700;margin-bottom:3px}
.wcta small{display:block;font-size:13px;color:var(--ink-mute)}
@media(min-width:560px){.wallet-cta{grid-template-columns:1fr 1fr}}

/* =========================================================================
   SECRET ADMIN ENTRANCE
   Hold the logo for three seconds. A ring fills around it, then it flashes
   and the panel opens. Invisible until the hold begins.
   ========================================================================= */
.brand{position:relative;-webkit-touch-callout:none;user-select:none;-webkit-user-select:none}
.brand img{
  -webkit-user-drag:none;user-select:none;pointer-events:none;
  transition:transform .25s, filter .25s;
}

.hold-ring{
  position:absolute;left:-3px;top:50%;transform:translateY(-50%);
  width:44px;height:44px;pointer-events:none;
  opacity:0;transition:opacity .18s;
}
.brand.holding .hold-ring,
.brand.unlocked .hold-ring{opacity:1}
.hold-ring svg{width:100%;height:100%;transform:rotate(-90deg)}
.hold-trk{fill:none;stroke:rgba(255,255,255,.12);stroke-width:2.5}
.hold-bar{fill:none;stroke:url(#holdgrad);stroke:var(--teal);stroke-width:2.5;stroke-linecap:round}

/* While held: the logo draws in and warms up, so the gesture feels alive
   rather than like a frozen page. */
.brand.holding img{transform:scale(.9);filter:brightness(1.25) saturate(1.3)}

/* Completed: one confident pulse, then the page changes. */
.brand.unlocked img{animation:unlockPop .6s cubic-bezier(.34,1.56,.64,1) forwards}
.brand.unlocked .hold-bar{stroke:var(--gold);animation:unlockRing .6s ease-out forwards}

@keyframes unlockPop{
  0%{transform:scale(.9);filter:brightness(1.25)}
  45%{transform:scale(1.22);filter:brightness(2) drop-shadow(0 0 14px var(--gold))}
  100%{transform:scale(1);filter:brightness(1)}
}
@keyframes unlockRing{
  0%{opacity:1;transform:scale(1)}
  100%{opacity:0;transform:scale(1.5)}
}

@media(prefers-reduced-motion:reduce){
  .brand.holding img,.brand.unlocked img{animation:none;transform:none}
}

/* ---- Shared form primitives -------------------------------------------
   Used by the wallet AND the admin panel. They live here, not in
   wallet.css, because admin.html does not load that file - which is
   exactly how the admin login form ended up unstyled. */
.wfield{margin-bottom:14px}
.wfield label{display:block;font-size:13px;font-weight:600;margin-bottom:6px;color:var(--ink-soft)}
.win,.wfield input,.wfield textarea,.wfield select{
  width:100%;background:var(--ocean-600);border:1px solid var(--ocean-600);
  border-radius:11px;padding:12px 15px;color:var(--ink);font-size:15px;
  outline:none;font-family:inherit;
}
.win:focus,.wfield input:focus,.wfield textarea:focus{border-color:var(--teal)}
.win::placeholder,.wfield input::placeholder{color:var(--ink-mute)}
select.win{appearance:none;cursor:pointer}
.wfull{width:100%;margin-top:14px}
.werr{color:#ff9d85;font-size:13.5px;min-height:18px;margin-top:10px}

/* The artwork is now a link to the game page, so it needs the anchor reset
   and a hint that it is clickable. */
a.gcard-img{display:block;cursor:pointer}
a.gcard-img img{transition:transform .25s}
.gcard:hover a.gcard-img img{transform:scale(1.05)}

/* ---- Footer money promise -------------------------------------------
   The headline claim now leads; the legally required notice stays, but as
   fine print underneath where it belongs. */
.money-promise{display:flex;gap:14px;align-items:flex-start;margin-bottom:16px}
.mp-ico{font-size:26px;flex:0 0 auto;line-height:1.2}
.money-promise b{display:block;font-size:17px;font-weight:800;margin-bottom:5px;
  background:var(--sea-grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.money-promise p{margin:0;font-size:14px;color:var(--ink-soft);line-height:1.6}

.fineprint{margin:0;padding-top:14px;border-top:1px solid var(--ocean-600);
  font-size:11.5px;line-height:1.7;color:var(--ink-mute)}
.fineprint b{color:var(--gold)}
.age-badge-sm{display:inline-grid;place-items:center;width:26px;height:26px;
  border-radius:50%;border:1.5px solid var(--coral);color:var(--coral);
  font-weight:800;font-size:10px;float:left;margin:0 9px 3px 0}

/* ---- Back button ------------------------------------------------------
   Sits in the header on every page except the home page, which has nowhere
   to go back to. */
.goback{
  display:inline-flex;align-items:center;gap:6px;flex:0 0 auto;
  padding:8px 14px;border-radius:999px;background:var(--ocean-700);
  border:1px solid var(--ocean-600);font-size:13.5px;font-weight:600;
  color:var(--ink-soft);transition:.15s;margin-right:10px;
}
.goback:hover{border-color:var(--teal);color:var(--teal);transform:translateX(-2px)}
.goback span{font-size:15px;line-height:1}
