/* =========================================================
   TF2 Bolt — Home / landing dashboard
   Intentionally isolated from styles.css so the new page can
   be added without disturbing any existing game/admin layout.
   ========================================================= */

body.home-page{
  padding-bottom:70px;
  background-color:#0a0b0f;
  background-image:
    radial-gradient(900px 520px at 74% 0%,rgba(47,76,119,.13),transparent 62%),
    radial-gradient(760px 560px at 16% 82%,rgba(224,139,63,.075),transparent 67%),
    linear-gradient(180deg,#0d0f14 0%,#090b0f 58%,#08090c 100%);
}

.home-shell{
  width:min(1450px,calc(100% - 42px));
  margin:0 auto;
  padding:28px 0 0;
  font-family:'Plus Jakarta Sans','Segoe UI',sans-serif;
}

.home-top-grid{
  display:grid;
  grid-template-columns:minmax(330px,.78fr) minmax(520px,1.62fr);
  gap:18px;
  align-items:stretch;
}

.home-welcome-card,
.home-feature-card,
.home-game-card,
.home-quick-card{
  border:1px solid rgba(255,255,255,.075);
  box-shadow:0 16px 42px rgba(0,0,0,.27),inset 0 1px 0 rgba(255,255,255,.025);
}

.home-welcome-card{
  position:relative;
  overflow:hidden;
  min-height:235px;
  padding:24px;
  border-radius:22px;
  background:
    radial-gradient(520px 260px at 90% 100%,rgba(231,143,61,.22),transparent 64%),
    radial-gradient(360px 220px at 22% -20%,rgba(255,255,255,.055),transparent 66%),
    linear-gradient(145deg,rgba(29,31,38,.98),rgba(22,23,29,.99));
}
.home-welcome-card::before{
  content:'';
  position:absolute;inset:0;
  opacity:.19;
  pointer-events:none;
  background-image:
    linear-gradient(115deg,transparent 0 22%,rgba(255,255,255,.045) 23%,transparent 24% 48%,rgba(255,255,255,.025) 49%,transparent 50%),
    radial-gradient(circle at 80% 20%,rgba(255,255,255,.10) 0 1px,transparent 1.5px);
  background-size:150px 150px,23px 23px;
}
.home-welcome-glow{
  position:absolute;
  width:220px;height:220px;border-radius:50%;
  right:-70px;bottom:-120px;
  background:rgba(224,139,63,.23);
  filter:blur(55px);
  pointer-events:none;
}
.home-welcome-head{position:relative;display:flex;align-items:center;gap:16px;z-index:1;}
.home-welcome-avatar{
  width:64px;height:64px;border-radius:17px;flex:0 0 64px;
  background:linear-gradient(145deg,#242933,#171a20);
  border:2px solid rgba(240,168,96,.7);
  padding:3px;position:relative;
  box-shadow:0 0 0 5px rgba(224,139,63,.06),0 8px 20px rgba(0,0,0,.28);
}
.home-welcome-avatar img{width:100%;height:100%;display:block;object-fit:cover;border-radius:12px;background:#14171c;}
.home-guest-avatar{
  width:100%;height:100%;border-radius:12px;display:grid;place-items:center;
  background:linear-gradient(145deg,rgba(232,145,43,.18),rgba(232,145,43,.06));
  color:#f0a04a;font-size:28px;
}
.home-level-badge{
  position:absolute;right:-8px;bottom:-8px;
  width:27px;height:27px;border-radius:9px;
  display:flex;align-items:center;justify-content:center;
  border:2px solid #1a1b21;background:#f0a04a;color:#1f1307;
  font-size:10px;font-weight:900;
  box-shadow:0 4px 12px rgba(0,0,0,.35);
}
.home-eyebrow{font-size:11.5px;font-weight:900;letter-spacing:1.4px;text-transform:uppercase;color:rgba(255,255,255,.48);margin-bottom:3px;}
.home-player-name{margin:0;font-size:22px;line-height:1.1;text-transform:none;letter-spacing:-.4px;font-family:inherit;color:#fff;}
.home-welcome-copy p{margin:6px 0 0;color:rgba(255,255,255,.56);font-size:12.5px;line-height:1.45;max-width:330px;}

.home-progress-block{position:relative;z-index:1;margin-top:21px;}
.home-progress-meta,.home-progress-foot{display:flex;align-items:center;justify-content:space-between;gap:12px;}
.home-progress-meta span{font-size:12px;font-weight:800;color:rgba(255,255,255,.62);}
.home-progress-meta strong{font-size:13px;color:#fff;}
.home-progress-track{height:9px;margin-top:8px;border-radius:999px;background:#101218;border:1px solid rgba(255,255,255,.08);overflow:hidden;box-shadow:inset 0 2px 4px rgba(0,0,0,.35);}
.home-progress-track i{display:block;width:0%;height:100%;border-radius:inherit;background:linear-gradient(90deg,#d97928,#ffb24f,#ffd18d);box-shadow:0 0 12px rgba(240,160,74,.42);transition:width .55s cubic-bezier(.22,1,.36,1);}
.home-progress-foot{margin-top:7px;color:rgba(255,255,255,.46);font-size:11px;}
.home-progress-foot span:last-child{text-align:right;}
.home-progress-foot .unlocked{color:#70d58c;}
.home-progress-foot .locked{color:#eeb068;}

.home-welcome-actions{position:relative;z-index:1;display:flex;gap:9px;margin-top:17px;}
.home-primary-btn,.home-secondary-btn{
  min-height:38px;border-radius:10px;padding:0 14px;
  display:inline-flex;align-items:center;justify-content:center;gap:7px;
  font-family:inherit;font-size:11.5px;font-weight:900;text-transform:uppercase;letter-spacing:.25px;
  text-decoration:none;cursor:pointer;transition:transform .14s ease,filter .14s ease,border-color .14s ease,background .14s ease;
}
.home-primary-btn{border:1px solid rgba(255,190,95,.45);background:linear-gradient(180deg,#f5a13b,#e98d2a);color:#211307;box-shadow:0 8px 18px rgba(228,128,31,.17);}
.home-primary-btn:hover{filter:brightness(1.06);transform:translateY(-1px);}
.home-secondary-btn{border:1px solid rgba(255,255,255,.09);background:rgba(255,255,255,.035);color:rgba(255,255,255,.78);}
.home-secondary-btn:hover{border-color:rgba(240,168,96,.35);color:#fff;background:rgba(255,255,255,.055);}

.home-feature-card{position:relative;overflow:hidden;border-radius:22px;min-height:235px;}
.home-rain-card{
  display:flex;align-items:stretch;
  background:
    radial-gradient(650px 320px at 92% 45%,rgba(233,137,33,.34),transparent 61%),
    radial-gradient(380px 300px at 8% 110%,rgba(37,92,121,.18),transparent 66%),
    linear-gradient(110deg,#101a20 0%,#172027 45%,#291a12 100%);
}
.home-rain-card::after{
  content:'';position:absolute;inset:0;pointer-events:none;opacity:.28;
  background-image:
    radial-gradient(circle at 25% 30%,rgba(255,255,255,.11) 0 1px,transparent 1.6px),
    radial-gradient(circle at 75% 70%,rgba(255,184,74,.12) 0 1px,transparent 1.8px);
  background-size:29px 29px,37px 37px;
}
.home-feature-copy{position:relative;z-index:3;width:55%;padding:25px 25px 23px;display:flex;flex-direction:column;align-items:flex-start;}
.home-feature-kicker{font-size:12px;font-weight:900;color:#fff;text-transform:uppercase;letter-spacing:.8px;}
.home-feature-kicker i{color:#f4a343;margin-right:6px;}
.home-feature-copy h2{font-family:inherit;text-transform:none;letter-spacing:-.4px;font-size:25px;line-height:1.05;margin:8px 0 6px;color:#fff;}
.home-feature-copy p{font-size:12.5px;line-height:1.5;color:rgba(255,255,255,.48);max-width:440px;margin:0;}
.home-rain-value{margin-top:14px;font-size:24px;font-weight:900;color:#ffad43;line-height:1;}
.home-rain-value small{font-size:10px;text-transform:uppercase;letter-spacing:.8px;color:rgba(255,255,255,.42);}
.home-feature-actions{margin-top:auto;display:flex;gap:10px;align-items:center;}
.home-feature-actions .home-primary-btn{border:0;}
.home-rain-status{font-size:10px;font-weight:800;color:rgba(255,255,255,.46);padding:7px 10px;border:1px solid rgba(255,255,255,.075);border-radius:999px;background:rgba(0,0,0,.13);}
.home-rain-status.live{color:#ffd07a;border-color:rgba(255,187,84,.25);background:rgba(255,159,45,.08);}
.home-rain-visual{position:absolute;z-index:2;right:0;top:0;bottom:0;width:48%;pointer-events:none;}
.home-rain-cloud{position:absolute;right:62px;top:45px;font-size:112px;color:#f6a133;filter:drop-shadow(0 0 28px rgba(255,151,38,.42)) drop-shadow(0 18px 14px rgba(0,0,0,.35));transform:rotate(-5deg);}
.home-rain-visual::before{
  content:'';position:absolute;right:44px;top:22px;width:190px;height:190px;border-radius:50%;
  border:1px solid rgba(255,186,82,.16);box-shadow:0 0 70px rgba(255,155,40,.14),inset 0 0 50px rgba(255,160,44,.08);
}
.home-rain-coin{position:absolute;width:42px;height:42px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:linear-gradient(145deg,#ffe47c,#f4a01f 65%,#9e4a08);border:2px solid #ffe49b;color:#7c3708;box-shadow:0 5px 16px rgba(0,0,0,.35),0 0 22px rgba(255,174,56,.2);font-size:17px;}
.home-rain-coin.c1{right:244px;top:62px;transform:rotate(-18deg) scale(.86);}
.home-rain-coin.c2{right:25px;bottom:24px;transform:rotate(18deg) scale(.65);}
.home-rain-coin.c3{right:205px;bottom:28px;transform:rotate(28deg) scale(.52);opacity:.76;}

/* Live site pulse uses real public endpoints only. Empty games become
   actionable states ("ready", "create first") instead of fake activity. */
.home-pulse-section{margin-top:18px;}
.home-pulse-head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:10px;padding:0 3px;}
.home-pulse-head h2{margin:0;color:#f6f7f9;font-size:18px;line-height:1.15;letter-spacing:-.25px;}
.home-pulse-updated{color:rgba(255,255,255,.34);font-size:10.5px;white-space:nowrap;}
.home-pulse-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;}
.home-pulse-card{position:relative;min-width:0;min-height:78px;padding:12px 35px 12px 12px;display:flex;align-items:center;gap:11px;text-decoration:none;color:#fff;border:1px solid rgba(255,255,255,.07);border-radius:14px;background:linear-gradient(180deg,rgba(26,29,35,.9),rgba(17,20,25,.92));box-shadow:0 10px 28px rgba(0,0,0,.18);transition:transform .15s ease,border-color .15s ease,background .15s ease;}
.home-pulse-card:hover{transform:translateY(-2px);border-color:rgba(233,150,68,.27);background:linear-gradient(180deg,rgba(31,35,42,.94),rgba(19,22,28,.96));}
.home-pulse-icon{width:42px;height:42px;flex:0 0 42px;border-radius:12px;display:grid;place-items:center;font-size:16px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.035);}
.home-pulse-icon.jackpot{color:#f0a43f;background:rgba(240,164,63,.09);}.home-pulse-icon.coinflip{color:#d97c72;background:linear-gradient(135deg,rgba(210,73,68,.09),rgba(65,110,198,.09));}.home-pulse-icon.economy{color:#d7bb61;background:rgba(215,187,97,.08);}.home-pulse-icon.matches{color:#6fb6ca;background:rgba(73,153,177,.08);}
.home-pulse-copy{display:flex;flex-direction:column;min-width:0;line-height:1.2;}
.home-pulse-copy small{font-size:9.5px;font-weight:900;letter-spacing:.75px;text-transform:uppercase;color:rgba(255,255,255,.38);}
.home-pulse-copy b{margin-top:3px;font-size:12.5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#f3f4f6;}
.home-pulse-copy em{margin-top:3px;font-size:10.5px;font-style:normal;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:rgba(255,255,255,.42);}
.home-pulse-state{position:absolute;right:12px;top:13px;width:10px;height:10px;display:grid;place-items:center;}
.home-pulse-state i{width:6px;height:6px;border-radius:50%;background:#68717d;box-shadow:0 0 0 4px rgba(104,113,125,.08);}
.home-pulse-card[data-state=ready] .home-pulse-state i{background:#d9a34d;box-shadow:0 0 0 4px rgba(217,163,77,.09);}
.home-pulse-card[data-state=live] .home-pulse-state i{background:#65c982;box-shadow:0 0 0 4px rgba(101,201,130,.10);animation:homePulseDot 1.7s ease-in-out infinite;}
.home-pulse-card[data-state=info] .home-pulse-state i{background:#6ab0c8;box-shadow:0 0 0 4px rgba(106,176,200,.10);}
@keyframes homePulseDot{0%,100%{transform:scale(1);opacity:1}50%{transform:scale(1.3);opacity:.62}}

.home-games-section{margin-top:28px;}
.home-section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:13px;padding:0 3px;}
.home-section-kicker{display:block;color:#f2a34b;font-size:11.5px;font-weight:900;text-transform:uppercase;letter-spacing:1.1px;margin-bottom:4px;}
.home-games-title{margin:0;font-family:inherit;text-transform:none;letter-spacing:-.45px;font-size:25px;color:#f6f7f9;}
.home-games-intro{margin:6px 0 0;max-width:720px;color:rgba(255,255,255,.52);font-size:11.5px;line-height:1.5;}
.home-section-link{font-size:11.5px;font-weight:800;color:rgba(255,255,255,.48);text-decoration:none;padding:7px 0;}
.home-section-link:hover{color:#f2a34b;}
.home-section-link i{font-size:9px;margin-left:5px;}

.home-games-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:14px;}
.home-game-card{
  --game-accent:#e08b3f;
  position:relative;overflow:hidden;
  min-height:220px;border-radius:20px;
  text-decoration:none;color:#fff;
  grid-column:span 3;
  background:#171a20;
  isolation:isolate;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,filter .18s ease;
}
.home-game-card.game-wide{grid-column:span 6;min-height:230px;}
.home-game-card:hover{transform:translateY(-3px);border-color:color-mix(in srgb,var(--game-accent) 48%,rgba(255,255,255,.12));box-shadow:0 20px 52px rgba(0,0,0,.36),0 0 0 1px color-mix(in srgb,var(--game-accent) 18%,transparent) inset;}
.home-game-card::before{
  content:'';position:absolute;inset:0;z-index:-3;
  background:
    linear-gradient(90deg,rgba(7,9,13,.90) 0%,rgba(7,9,13,.68) 43%,rgba(7,9,13,.16) 100%),
    radial-gradient(420px 240px at 88% 45%,color-mix(in srgb,var(--game-accent) 42%,transparent),transparent 68%),
    linear-gradient(135deg,#171921,#11141a);
}
.home-game-card::after{
  content:'';position:absolute;inset:0;z-index:-1;opacity:.27;pointer-events:none;
  background-image:
    linear-gradient(125deg,transparent 0 32%,rgba(255,255,255,.04) 33%,transparent 34% 65%,rgba(255,255,255,.025) 66%,transparent 67%),
    radial-gradient(circle at 20% 20%,rgba(255,255,255,.10) 0 1px,transparent 1.5px);
  background-size:180px 180px,31px 31px;
}
.home-game-noise{position:absolute;inset:0;z-index:-2;opacity:.16;background:radial-gradient(ellipse at 50% 100%,var(--game-accent),transparent 57%);}
.home-game-copy{position:relative;z-index:3;display:flex;flex-direction:column;align-items:flex-start;width:56%;height:100%;padding:22px 18px 19px;}
.game-wide .home-game-copy{width:48%;padding:26px 22px 22px;}
.home-game-tag{font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:1px;color:color-mix(in srgb,var(--game-accent) 78%,white);padding:4px 7px;border-radius:999px;border:1px solid color-mix(in srgb,var(--game-accent) 30%,transparent);background:color-mix(in srgb,var(--game-accent) 9%,transparent);}
.home-game-copy h3{font-family:inherit;text-transform:uppercase;letter-spacing:.15px;font-size:23px;line-height:1;margin:10px 0 6px;color:#fff;text-shadow:0 2px 12px rgba(0,0,0,.5);}
.game-wide .home-game-copy h3{font-size:28px;}
.home-game-copy p{font-size:12px;line-height:1.45;color:rgba(255,255,255,.49);margin:0;max-width:260px;}
.home-game-cta{margin-top:auto;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.45px;color:#fff;opacity:.9;}
.home-game-cta i{margin-left:5px;font-size:9px;transition:transform .16s ease;}
.home-game-card:hover .home-game-cta i{transform:translateX(4px);}
.home-game-visual{position:absolute;z-index:1;right:-8px;top:0;bottom:0;width:52%;display:flex;align-items:center;justify-content:center;pointer-events:none;}
.home-game-visual>i{font-size:112px;color:var(--game-accent);filter:drop-shadow(0 0 28px color-mix(in srgb,var(--game-accent) 48%,transparent)) drop-shadow(0 18px 16px rgba(0,0,0,.38));transform:rotate(-8deg);opacity:.96;transition:transform .2s cubic-bezier(.2,.8,.2,1);}
.home-game-card:not(.game-wide) .home-game-visual{right:-30px;width:59%;}
.home-game-card:not(.game-wide) .home-game-visual>i{font-size:86px;opacity:.91;}
.home-game-card:hover .home-game-visual>i{transform:rotate(-4deg) scale(1.06);}

.game-jackpot{--game-accent:#f0a43f;}
.game-jackpot::before{background:linear-gradient(90deg,rgba(18,12,6,.93),rgba(31,17,9,.70) 48%,rgba(76,40,11,.14)),radial-gradient(390px 240px at 85% 50%,rgba(255,158,36,.38),transparent 65%),linear-gradient(135deg,#23140b,#170d08);}
.game-jackpot .home-game-visual>i{font-size:132px;}
.game-orbit{position:absolute;border:1px solid rgba(255,193,94,.35);border-radius:50%;box-shadow:0 0 20px rgba(255,159,43,.15);}
.game-orbit.orbit-a{width:170px;height:170px;transform:rotate(18deg);}
.game-orbit.orbit-b{width:208px;height:116px;transform:rotate(-28deg);}

.game-coinflip{--game-accent:#e64d4f;}
.game-coinflip::before{background:linear-gradient(90deg,rgba(20,8,11,.93),rgba(48,9,16,.63) 48%,rgba(76,13,19,.14)),radial-gradient(390px 240px at 82% 50%,rgba(239,51,62,.38),transparent 65%),linear-gradient(135deg,#221014,#150c11);}
.home-flip-visual{gap:0;transform:rotate(-8deg);}
.flip-disc{width:104px;height:104px;border-radius:50%;display:flex;align-items:center;justify-content:center;border:7px dashed rgba(255,255,255,.64);font-size:34px;box-shadow:0 8px 18px rgba(0,0,0,.42),0 0 32px currentColor;}
.flip-red{color:#ff5459;background:radial-gradient(circle,#fff 0 13%,#e9474b 14% 58%,#8d1e24 59%);margin-right:-26px;z-index:2;}
.flip-blu{color:#55a4ff;background:radial-gradient(circle,#fff 0 13%,#3684d6 14% 58%,#174578 59%);transform:scale(.84) translateY(-15px);z-index:1;}

.game-crates{--game-accent:#5d91ff;}
.game-crates::before{background:linear-gradient(90deg,rgba(7,11,23,.94),rgba(11,29,65,.63) 50%,rgba(23,67,136,.14)),radial-gradient(260px 220px at 84% 54%,rgba(68,119,255,.40),transparent 66%),linear-gradient(135deg,#0c1526,#0a0f18);}
.game-roulette{--game-accent:#f04754;}
.game-roulette::before{background:linear-gradient(90deg,rgba(24,7,9,.94),rgba(58,10,16,.61) 50%,rgba(118,16,24,.13)),radial-gradient(260px 220px at 84% 54%,rgba(255,52,71,.37),transparent 66%),linear-gradient(135deg,#240d11,#120a0d);}
.game-payload{--game-accent:#e4ad43;}
.game-payload::before{background:linear-gradient(90deg,rgba(20,14,6,.94),rgba(53,35,11,.62) 50%,rgba(105,71,16,.13)),radial-gradient(260px 220px at 84% 54%,rgba(241,174,46,.40),transparent 66%),linear-gradient(135deg,#231a0c,#11100a);}
.game-crafter{--game-accent:#c96ef2;}
.game-crafter::before{background:linear-gradient(90deg,rgba(18,8,25,.94),rgba(48,15,62,.62) 50%,rgba(90,28,111,.12)),radial-gradient(260px 220px at 84% 54%,rgba(181,76,232,.39),transparent 66%),linear-gradient(135deg,#1b0e22,#100b14);}
.game-matches{--game-accent:#49c7b0;grid-column:span 4;}
.game-matches::before{background:linear-gradient(90deg,rgba(6,19,18,.94),rgba(10,51,47,.60) 50%,rgba(18,91,82,.11)),radial-gradient(300px 220px at 84% 54%,rgba(54,198,175,.37),transparent 66%),linear-gradient(135deg,#0a1d1b,#09110f);}

/* Let the last row breathe instead of leaving a visibly odd 4-column gap. */
.game-crates,.game-roulette,.game-payload,.game-crafter{grid-column:span 3;}
.home-games-grid .game-matches{grid-column:span 12;min-height:175px;}
.home-games-grid .game-matches .home-game-copy{width:45%;}
.home-games-grid .game-matches .home-game-visual{width:40%;right:5%;}
.home-games-grid .game-matches .home-game-visual>i{font-size:102px;}

.home-quick-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:18px;}
.home-quick-card{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:12px;min-height:72px;border-radius:14px;padding:12px 14px;background:linear-gradient(180deg,rgba(29,33,40,.78),rgba(20,23,28,.84));text-decoration:none;color:#fff;transition:transform .15s,border-color .15s,background .15s;}
.home-quick-card:hover{transform:translateY(-2px);border-color:rgba(224,139,63,.28);background:linear-gradient(180deg,rgba(33,38,46,.9),rgba(22,25,31,.93));}
.home-quick-icon{width:40px;height:40px;border-radius:11px;display:flex;align-items:center;justify-content:center;background:rgba(224,139,63,.09);border:1px solid rgba(224,139,63,.18);color:#eda050;font-size:15px;}
.home-quick-card span:nth-child(2){display:flex;flex-direction:column;gap:3px;min-width:0;}
.home-quick-card b{font-size:11px;}
.home-quick-card small{font-size:9.5px;color:rgba(255,255,255,.38);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.home-quick-card>i{font-size:9px;color:rgba(255,255,255,.24);}

@media (max-width:1180px){
  .home-top-grid{grid-template-columns:1fr;}
  .home-welcome-card{min-height:220px;}
  .home-feature-card{min-height:220px;}
  .home-game-card,.home-game-card.game-wide{grid-column:span 6;}
  .home-games-grid .game-matches{grid-column:span 12;}
}

@media (max-width:820px){
  .home-shell{width:min(100% - 24px,900px);padding-top:18px;}
  .home-feature-copy{width:68%;}
  .home-rain-visual{width:42%;opacity:.72;}
  .home-game-card,.home-game-card.game-wide,.home-games-grid .game-matches{grid-column:span 12;min-height:195px;}
  .home-game-copy,.game-wide .home-game-copy,.home-games-grid .game-matches .home-game-copy{width:58%;}
  .home-quick-row{grid-template-columns:1fr;}
}

@media (max-width:560px){
  .home-shell{width:calc(100% - 18px);}
  .home-welcome-card{padding:18px;border-radius:17px;}
  .home-welcome-avatar{width:54px;height:54px;flex-basis:54px;border-radius:14px;}
  .home-player-name{font-size:19px;}
  .home-welcome-actions{flex-direction:column;}
  .home-primary-btn,.home-secondary-btn{width:100%;}
  .home-feature-card{border-radius:17px;min-height:270px;}
  .home-feature-copy{width:100%;padding:20px;}
  .home-rain-visual{opacity:.24;width:80%;right:-28%;}
  .home-feature-copy h2{font-size:22px;}
  .home-games-grid{gap:10px;}
  .home-game-card,.home-game-card.game-wide{border-radius:16px;min-height:178px;}
  .home-game-copy,.game-wide .home-game-copy,.home-games-grid .game-matches .home-game-copy{width:68%;padding:18px 16px;}
  .home-game-copy h3,.game-wide .home-game-copy h3{font-size:21px;}
  .home-game-card .home-game-visual{opacity:.72;right:-35px;}
  .home-section-link{display:none;}
  .home-progress-foot{flex-direction:column;align-items:flex-start;gap:3px;}
  .home-progress-foot span:last-child{text-align:left;}
}

/* =========================================================
   Home v2 — compact Rain + featured match system
   Shared by the three home.js variants below.
   ========================================================= */
.home-match-card{
  min-height:235px;
  background:
    radial-gradient(620px 300px at 92% 35%,rgba(224,139,63,.18),transparent 65%),
    radial-gradient(480px 260px at 6% 110%,rgba(51,132,157,.14),transparent 68%),
    linear-gradient(120deg,#10151c,#171b22 48%,#21170f);
}
.home-match-card::before{content:'';position:absolute;inset:0;pointer-events:none;opacity:.25;background-image:radial-gradient(circle at 30% 30%,rgba(255,255,255,.12) 0 1px,transparent 1.5px);background-size:27px 27px;}
#homeMatchContent{position:relative;z-index:2;height:100%;min-height:235px;}
.home-match-loading{padding:28px;display:flex;flex-direction:column;gap:16px;justify-content:center;}
.home-match-loading-line{height:18px;width:62%;border-radius:8px;background:linear-gradient(90deg,rgba(255,255,255,.045),rgba(255,255,255,.1),rgba(255,255,255,.045));background-size:220% 100%;animation:hmShimmer 1.6s linear infinite;}
.home-match-loading-line.short{width:38%;height:12px;}@keyframes hmShimmer{to{background-position:-220% 0;}}
.hm-empty{height:100%;min-height:235px;padding:28px;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;}
.hm-empty h2{margin:8px 0 6px;font:800 25px/1.1 'Plus Jakarta Sans',sans-serif;color:#fff;text-transform:none;letter-spacing:-.4px;}.hm-empty p{max-width:520px;margin:0 0 18px;color:rgba(255,255,255,.48);font-size:11px;line-height:1.55;}
.hm-empty-next{min-width:min(430px,100%);margin:-5px 0 14px;padding:10px 12px;border:1px solid rgba(255,255,255,.07);border-radius:11px;background:rgba(255,255,255,.025);display:flex;flex-direction:column;gap:2px;}.hm-empty-next small{font-size:9px;text-transform:uppercase;letter-spacing:.75px;font-weight:900;color:#eaa04a}.hm-empty-next b{font-size:12px;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.hm-empty-next span{font-size:9.5px;color:rgba(255,255,255,.4)}
.hm-arena{height:100%;min-height:235px;padding:20px 23px 18px;display:flex;flex-direction:column;}
.hm-topline{display:flex;align-items:center;gap:8px;min-height:24px;}.hm-topline .home-feature-kicker{margin-right:auto;}
.hm-game-pill,.hm-live-pill{padding:5px 8px;border-radius:999px;border:1px solid rgba(255,255,255,.08);background:rgba(0,0,0,.16);font-size:8.5px;font-weight:900;text-transform:uppercase;letter-spacing:.75px;color:rgba(255,255,255,.55);}
.hm-live-pill.live{color:#ffb353;border-color:rgba(255,157,54,.28);background:rgba(255,143,33,.09);box-shadow:0 0 18px rgba(255,136,25,.08);}
.hm-event{display:flex;align-items:baseline;gap:9px;margin-top:7px;min-height:20px;}.hm-event b{font-size:13px;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.hm-event span{font-size:9.5px;color:rgba(255,255,255,.38);white-space:nowrap;}
.hm-versus{flex:1;display:grid;grid-template-columns:minmax(0,1fr) 104px minmax(0,1fr);align-items:center;gap:16px;margin:5px 0 8px;}
.hm-team{display:flex;align-items:center;gap:12px;min-width:0;}.hm-team.right{justify-content:flex-end;text-align:right;}.hm-team>div{min-width:0;}.hm-team strong{display:block;color:#fff;font-size:16px;line-height:1.15;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.hm-team small{display:block;margin-top:5px;font-size:9px;color:rgba(255,255,255,.42);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.hm-team-logo{width:64px;height:64px;border-radius:18px;display:grid;place-items:center;flex:0 0 64px;border:1px solid rgba(255,255,255,.1);background:radial-gradient(circle at 35% 28%,rgba(255,255,255,.09),transparent 44%),rgba(0,0,0,.22);box-shadow:0 10px 28px rgba(0,0,0,.24);overflow:hidden;}.hm-team-logo img{max-width:72%;max-height:72%;object-fit:contain;}.hm-team-logo.fallback{font-size:16px;font-weight:900;color:rgba(255,255,255,.75);}.hm-team-logo.a{box-shadow:0 10px 28px rgba(0,0,0,.24),0 0 24px rgba(73,199,176,.07);}.hm-team-logo.b{box-shadow:0 10px 28px rgba(0,0,0,.24),0 0 24px rgba(224,139,63,.08);}
.hm-center{text-align:center;display:flex;flex-direction:column;align-items:center;}.hm-center>span{width:42px;height:42px;display:grid;place-items:center;border-radius:50%;font-size:10px;font-weight:900;letter-spacing:1px;color:#e9a152;border:1px solid rgba(224,139,63,.27);background:rgba(224,139,63,.08);box-shadow:0 0 20px rgba(224,139,63,.08);}.hm-center b{margin-top:6px;font-size:13px;color:#fff;}.hm-center small{font-size:8px;text-transform:uppercase;letter-spacing:.8px;color:rgba(255,255,255,.32);}
.hm-actions{display:grid;grid-template-columns:1fr auto 1fr;gap:8px;align-items:center;}.hm-bet-btn,.hm-open-btn{height:35px;border-radius:9px;text-decoration:none;display:flex;align-items:center;justify-content:center;gap:8px;font-size:9.5px;font-weight:900;transition:.14s ease;}.hm-bet-btn{border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.035);color:#fff;}.hm-bet-btn.team-a:hover{border-color:rgba(73,199,176,.38);background:rgba(73,199,176,.08);}.hm-bet-btn.team-b:hover{border-color:rgba(224,139,63,.4);background:rgba(224,139,63,.08);}.hm-bet-btn b{color:#f4a44d;}.hm-open-btn{padding:0 13px;color:rgba(255,255,255,.55);border:1px solid transparent;}.hm-open-btn:hover{color:#fff;background:rgba(255,255,255,.035);}
.hm-dots{display:flex;justify-content:center;gap:5px;margin-top:8px;}.hm-dots button{width:6px;height:6px;border:0;border-radius:50%;padding:0;background:rgba(255,255,255,.18);cursor:pointer;transition:.15s;}.hm-dots button.active{width:19px;border-radius:999px;background:#e89a45;}

.home-utility-row{display:grid;grid-template-columns:1.1fr repeat(4,1fr);gap:10px;margin-top:12px;}
.home-mini-card{min-height:74px;border:1px solid rgba(255,255,255,.065);border-radius:14px;background:linear-gradient(180deg,rgba(27,31,38,.82),rgba(19,22,27,.88));box-shadow:0 10px 25px rgba(0,0,0,.16),inset 0 1px 0 rgba(255,255,255,.02);display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:10px;padding:10px 12px;text-decoration:none;color:#fff;transition:transform .14s,border-color .14s,background .14s;}
.home-mini-card:hover{transform:translateY(-2px);border-color:rgba(224,139,63,.24);background:linear-gradient(180deg,rgba(31,36,44,.92),rgba(21,24,30,.94));}.home-mini-rain{background:radial-gradient(180px 100px at 10% 120%,rgba(55,131,151,.14),transparent 70%),linear-gradient(180deg,rgba(25,31,37,.91),rgba(18,23,28,.94));}
.home-mini-icon{width:40px;height:40px;border-radius:11px;display:grid;place-items:center;color:#eca250;background:rgba(224,139,63,.08);border:1px solid rgba(224,139,63,.16);font-size:14px;}.home-mini-icon.rain{color:#78cbe0;background:rgba(71,157,183,.09);border-color:rgba(83,171,197,.18);}
.home-mini-copy{display:flex;flex-direction:column;min-width:0;gap:2px;}.home-mini-copy small{font-size:9.5px;font-weight:900;text-transform:uppercase;letter-spacing:.8px;color:rgba(255,255,255,.36);}.home-mini-copy b{font-size:12.5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.home-mini-copy em{font-style:normal;font-size:10px;color:rgba(255,255,255,.33);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.home-mini-action{width:28px;height:28px;border-radius:9px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.07);background:rgba(255,255,255,.025);color:rgba(255,255,255,.38);font-size:8px;cursor:pointer;transition:.14s;}.home-mini-card:hover .home-mini-action,.home-mini-action:hover{color:#f0a04a;border-color:rgba(224,139,63,.25);background:rgba(224,139,63,.06);}

/* Variant 2: data-rich command-center match stack. */
.home-variant-command .home-match-card{background:radial-gradient(640px 300px at 100% 0%,rgba(67,126,161,.14),transparent 62%),linear-gradient(120deg,#10151c,#151a21 58%,#101317);}
.hm-command{padding:18px 20px;height:100%;min-height:235px;display:flex;flex-direction:column;}.hm-command-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px;}.hm-command-head a{font-size:9px;color:rgba(255,255,255,.42);text-decoration:none;font-weight:800;}.hm-command-head a:hover{color:#f2a34b;}.hm-match-stack{display:grid;gap:7px;}.hm-row{display:grid;grid-template-columns:64px minmax(0,1fr) 86px 86px 25px;gap:8px;align-items:center;min-height:52px;padding:7px 9px;border:1px solid rgba(255,255,255,.055);border-radius:11px;background:rgba(255,255,255,.025);text-decoration:none;color:#fff;transition:.13s;}.hm-row:hover{background:rgba(255,255,255,.045);border-color:rgba(224,139,63,.22);transform:translateX(2px);}.hm-row-game{font-size:8px;font-weight:900;text-transform:uppercase;letter-spacing:.8px;color:#f0a04a;}.hm-row-teams{min-width:0;display:grid;gap:3px;}.hm-row-team{display:flex;align-items:center;justify-content:space-between;gap:8px;font-size:10.5px;font-weight:800;}.hm-row-team span:first-child{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.hm-row-team span:last-child{font-size:9px;color:rgba(255,255,255,.4);}.hm-row-meta{text-align:right;}.hm-row-meta b{display:block;font-size:9px;color:#fff;}.hm-row-meta small{font-size:8px;color:rgba(255,255,255,.35);}.hm-row-pool{text-align:right;font-size:10px;font-weight:800;color:#e9a152;}.hm-row>i{font-size:8px;color:rgba(255,255,255,.24);}

/* Variant 3: broadcast-style hero + next-up rail. */
.home-variant-broadcast .home-match-card{background:radial-gradient(520px 260px at 76% 50%,rgba(224,139,63,.19),transparent 60%),radial-gradient(500px 320px at 0% 100%,rgba(62,171,185,.13),transparent 66%),linear-gradient(110deg,#0f171c,#151a20 48%,#21170f);}
.hm-broadcast{height:100%;min-height:235px;padding:18px 20px;display:grid;grid-template-columns:minmax(0,1fr) 180px;gap:15px;}.hm-stage{display:flex;flex-direction:column;min-width:0;}.hm-stage-head{display:flex;align-items:center;gap:8px;}.hm-stage-head .home-feature-kicker{margin-right:auto;}.hm-stage-event{margin-top:6px;color:rgba(255,255,255,.50);font-size:11px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.hm-stage-vs{flex:1;display:grid;grid-template-columns:1fr 80px 1fr;gap:12px;align-items:center;}.hm-stage-team{text-align:center;min-width:0;}.hm-stage-team .hm-team-logo{margin:0 auto 7px;width:58px;height:58px;flex-basis:58px;border-radius:17px;}.hm-stage-team strong{display:block;font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.hm-stage-team small{font-size:10.5px;color:#e6a052;}.hm-stage-center{text-align:center;}.hm-stage-center span{display:block;font-size:9.5px;font-weight:900;letter-spacing:1px;color:rgba(255,255,255,.34);}.hm-stage-center b{display:block;font-size:20px;line-height:1.15;color:#fff;margin:3px 0;}.hm-stage-center small{font-size:9.5px;color:rgba(255,255,255,.34);}.hm-stage-foot{display:flex;align-items:center;justify-content:space-between;gap:10px;}.hm-stage-foot a{height:34px;padding:0 12px;border-radius:9px;display:inline-flex;align-items:center;gap:7px;background:linear-gradient(180deg,#f5a13b,#e98d2a);color:#211307;text-decoration:none;font-size:10.5px;font-weight:900;}.hm-next{border-left:1px solid rgba(255,255,255,.06);padding-left:14px;display:flex;flex-direction:column;gap:7px;}.hm-next-label{font-size:9.5px;font-weight:900;text-transform:uppercase;letter-spacing:1px;color:rgba(255,255,255,.34);margin-bottom:2px;}.hm-next-item{padding:9px;border:1px solid rgba(255,255,255,.05);border-radius:10px;background:rgba(255,255,255,.022);cursor:pointer;transition:.13s;}.hm-next-item:hover,.hm-next-item.active{border-color:rgba(224,139,63,.22);background:rgba(224,139,63,.05);}.hm-next-item b{display:block;font-size:11px;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.hm-next-item span{display:block;margin-top:3px;font-size:9.5px;color:rgba(255,255,255,.35);}

@media(max-width:1180px){.home-utility-row{grid-template-columns:repeat(2,minmax(0,1fr));}.hm-broadcast{grid-template-columns:1fr 160px;}}
@media(max-width:820px){.hm-versus{grid-template-columns:1fr 66px 1fr;gap:8px}.hm-team-logo{width:48px;height:48px;flex-basis:48px;border-radius:14px}.hm-team strong{font-size:12px}.hm-team small{font-size:8px}.hm-actions{grid-template-columns:1fr 1fr}.hm-open-btn{display:none}.home-utility-row{grid-template-columns:1fr 1fr}.hm-command .hm-row{grid-template-columns:50px minmax(0,1fr) 75px 25px}.hm-command .hm-row-pool{display:none}.hm-broadcast{grid-template-columns:1fr}.hm-next{display:none}}
@media(max-width:560px){.home-utility-row{grid-template-columns:1fr}.hm-arena{padding:17px 15px}.hm-event span{display:none}.hm-versus{grid-template-columns:1fr 54px 1fr}.hm-team{flex-direction:column;text-align:center}.hm-team.right{flex-direction:column-reverse;text-align:center}.hm-team strong{font-size:10.5px}.hm-team small{display:none}.hm-actions{grid-template-columns:1fr 1fr}.hm-bet-btn span{max-width:100px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.hm-command{padding:15px}.hm-command .hm-row{grid-template-columns:42px minmax(0,1fr) 25px}.hm-command .hm-row-meta,.hm-command .hm-row-pool{display:none}.hm-stage-vs{grid-template-columns:1fr 60px 1fr}.hm-stage-team .hm-team-logo{width:46px;height:46px;flex-basis:46px}.hm-stage-center b{font-size:15px}}

/* Broader page personality differences so the JS alternatives feel like
   genuinely different home screens rather than only different match markup. */
.home-variant-command .home-shell{width:min(1540px,calc(100% - 36px));}
.home-variant-command .home-top-grid{grid-template-columns:minmax(300px,.62fr) minmax(620px,1.78fr);gap:12px;}
.home-variant-command .home-welcome-card,.home-variant-command .home-match-card{border-radius:16px;min-height:224px;}
.home-variant-command #homeMatchContent{min-height:224px;}
.home-variant-command .home-welcome-card{padding:20px;}
.home-variant-command .home-welcome-actions{margin-top:13px;}
.home-variant-command .home-games-section{margin-top:23px;}
.home-variant-command .home-game-card{border-radius:15px;min-height:185px;}
.home-variant-command .home-game-card.game-wide{min-height:195px;}
.home-variant-command .home-game-copy{padding:18px 16px 16px;}
.home-variant-command .game-wide .home-game-copy{padding:21px 19px 18px;}
.home-variant-command .home-game-copy h3{font-size:20px;}.home-variant-command .game-wide .home-game-copy h3{font-size:24px;}

.home-variant-broadcast .home-shell{width:min(1500px,calc(100% - 42px));}
.home-variant-broadcast .home-top-grid{grid-template-columns:minmax(325px,.7fr) minmax(650px,1.8fr);gap:16px;}
.home-variant-broadcast .home-welcome-card,.home-variant-broadcast .home-match-card{min-height:258px;}
.home-variant-broadcast #homeMatchContent{min-height:258px;}
.home-variant-broadcast .home-welcome-card{background:radial-gradient(520px 300px at 105% 105%,rgba(231,143,61,.28),transparent 62%),radial-gradient(360px 240px at 0% 0%,rgba(64,110,138,.1),transparent 67%),linear-gradient(145deg,rgba(28,31,38,.99),rgba(20,22,28,.99));}
.home-variant-broadcast .home-game-card{border-radius:22px;box-shadow:0 20px 48px rgba(0,0,0,.31),inset 0 1px 0 rgba(255,255,255,.025);}
.home-variant-broadcast .home-game-card:hover{transform:translateY(-5px) scale(1.005);}
.home-variant-broadcast .home-games-title{font-size:24px;}

@media(max-width:1180px){.home-variant-command .home-top-grid,.home-variant-broadcast .home-top-grid{grid-template-columns:1fr}.home-variant-broadcast .home-welcome-card,.home-variant-broadcast .home-match-card{min-height:230px}}

/* ─────────────────────────────────────────────────────────────
   Broadcast Desk: open-market filter + Top Games ranking
   ───────────────────────────────────────────────────────────── */
.hm-stage-head-with-tabs{flex-wrap:wrap;row-gap:7px;}
.hm-broadcast-title-row{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;}
.hm-broadcast-tabs{
  display:inline-flex;align-items:center;gap:3px;padding:3px;
  border:1px solid rgba(255,255,255,.07);border-radius:9px;
  background:rgba(0,0,0,.18);box-shadow:inset 0 1px 0 rgba(255,255,255,.025);
}
.hm-broadcast-tabs button{
  height:24px;padding:0 8px;border:0;border-radius:6px;background:transparent;
  color:rgba(255,255,255,.42);font:800 8px/1 inherit;text-transform:uppercase;
  letter-spacing:.48px;cursor:pointer;white-space:nowrap;transition:.13s ease;
}
.hm-broadcast-tabs button i{font-size:7px;margin-right:3px;}
.hm-broadcast-tabs button:hover{color:rgba(255,255,255,.78);background:rgba(255,255,255,.035);}
.hm-broadcast-tabs button.active{
  color:#f3a14a;background:rgba(224,139,63,.11);
  box-shadow:inset 0 0 0 1px rgba(224,139,63,.16),0 3px 10px rgba(0,0,0,.18);
}
.hm-market-pill{
  display:inline-flex;align-items:center;height:23px;padding:0 7px;border-radius:7px;
  border:1px solid rgba(80,196,141,.19);background:rgba(80,196,141,.075);
  color:#68d69d;font-size:7.5px;font-weight:900;letter-spacing:.7px;white-space:nowrap;
}
.hm-stage-foot .hint{display:inline-flex;align-items:center;gap:5px;color:rgba(255,255,255,.43);}
.hm-next-item span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.hm-empty .hm-broadcast-title-row{margin-bottom:14px;}
.hm-empty .hm-broadcast-tabs{margin-left:auto;}

@media(max-width:1180px){
  .hm-stage-head-with-tabs .home-feature-kicker{flex:1 0 auto;}
}
@media(max-width:920px){
  .hm-stage-head-with-tabs .hm-broadcast-tabs{order:5;width:max-content;}
}
@media(max-width:560px){
  .hm-broadcast-tabs button{padding:0 6px;font-size:7px;}
  .hm-market-pill{font-size:7px;padding:0 6px;}
}


/* SEO landing introduction: one clear first H1 before dashboard widgets. */
.home-seo-intro{
  margin:0 0 20px;
  padding:22px 24px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:18px;
  background:linear-gradient(135deg,rgba(24,27,34,.92),rgba(14,16,21,.9));
  box-shadow:0 12px 34px rgba(0,0,0,.18);
}
.home-seo-kicker{display:block;margin-bottom:7px;color:#f0a04a;font-size:11.5px;font-weight:900;letter-spacing:1.45px;}
.home-seo-intro h1{margin:0;color:#f7f8fa;font-size:clamp(28px,3vw,46px);line-height:1.08;letter-spacing:-1px;}
.home-seo-intro p{margin:11px 0 0;max-width:1050px;color:rgba(255,255,255,.61);font-size:14px;line-height:1.7;}
.home-intro-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:19px;}
.home-intro-actions a{min-height:45px;display:inline-flex;align-items:center;justify-content:center;gap:11px;padding:0 18px;border-radius:11px;text-decoration:none;font-size:14px;font-weight:800;transition:transform .15s ease,background .15s ease,border-color .15s ease;}
.home-intro-actions a:hover{transform:translateY(-2px);}
.home-intro-primary{color:#241609;background:linear-gradient(180deg,#f5a844,#e78b2e);border:1px solid rgba(255,194,112,.45);box-shadow:0 8px 22px rgba(227,129,38,.16);}
.home-intro-secondary{color:#f3f3f4;border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.04);}
.home-intro-secondary:hover{border-color:rgba(240,168,96,.5);background:rgba(255,255,255,.08);}
.home-page.home-guest .home-progress-block{display:none;}
.home-page.home-guest .home-welcome-actions{margin-top:24px;}
.home-page.home-guest .home-welcome-card{min-height:210px;}
.home-games-section{scroll-margin-top:95px;}
@media(max-width:560px){
  .home-seo-intro{padding:18px 17px;border-radius:15px;margin-bottom:14px;}
  .home-seo-intro h1{font-size:27px;}
  .home-seo-intro p{font-size:14px;}
  .home-intro-actions{margin-top:16px;}
  .home-intro-actions a{width:100%;}
}

/* Home readability pass: keep support copy comfortably readable on small screens. */
@media(max-width:760px){
  .home-eyebrow,.home-section-kicker,.home-feature-kicker{font-size:11.5px!important;}
  .home-welcome-copy p,.home-feature-copy p,.home-game-copy p{font-size:12.5px!important;line-height:1.5!important;}
  .home-progress-foot{font-size:10.5px!important;}
  .home-mini-copy small{font-size:9.5px!important;}
  .home-mini-copy b{font-size:12.5px!important;}
  .home-mini-copy em{font-size:10.5px!important;}
  .home-game-tag{font-size:10px!important;}
  .home-game-cta{font-size:11px!important;}
  .home-games-title{font-size:23px!important;}
  .home-games-intro{font-size:12px!important;line-height:1.5!important;}
}

@media(max-width:980px){.home-pulse-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:560px){.home-pulse-head{align-items:flex-start;flex-direction:column;gap:4px}.home-pulse-updated{white-space:normal}.home-pulse-grid{grid-template-columns:1fr}.home-pulse-card{min-height:72px}.home-pulse-copy b{white-space:normal}}

/* ── Free 100-Bolt welcome bonus banner ── */
.home-free-bonus-banner{
  position:relative;overflow:hidden;display:grid;grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;gap:18px;margin-top:14px;padding:18px 20px;border-radius:16px;
  border:1px solid rgba(255,174,54,.24);
  background:
    radial-gradient(500px 170px at 5% 120%,rgba(255,151,33,.17),transparent 68%),
    radial-gradient(380px 180px at 88% -40%,rgba(255,199,83,.10),transparent 72%),
    linear-gradient(180deg,rgba(31,28,22,.96),rgba(18,20,25,.97));
  box-shadow:0 14px 34px rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.025);
}
.home-free-bonus-banner::after{content:'';position:absolute;inset:0;pointer-events:none;background:linear-gradient(105deg,transparent 0 45%,rgba(255,255,255,.02) 53%,transparent 61%);}
.home-free-bonus-burst{width:58px;height:58px;border-radius:16px;display:grid;place-items:center;position:relative;z-index:1;background:linear-gradient(145deg,#f0a03f,#d87922);color:#191108;font-size:24px;box-shadow:0 8px 24px rgba(224,139,63,.25),inset 0 1px 0 rgba(255,255,255,.25);}
.home-free-bonus-copy{position:relative;z-index:1;min-width:0;}
.home-free-bonus-kicker{display:block;font-size:9px;line-height:1.3;font-weight:900;letter-spacing:.9px;text-transform:uppercase;color:#f3a84d;margin-bottom:5px;}
.home-free-bonus-copy h2{font-size:24px;line-height:1.05;margin:0 0 6px;color:#fff;letter-spacing:.6px;}
.home-free-bonus-copy p{margin:0;color:#aab2bf;font-size:11.5px;line-height:1.55;}
.home-free-bonus-rules{display:flex;flex-wrap:wrap;gap:7px;margin-top:9px;}
.home-free-bonus-rules span{display:inline-flex;align-items:center;gap:6px;padding:5px 8px;border-radius:999px;border:1px solid rgba(255,255,255,.07);background:rgba(255,255,255,.025);color:#c7cdd7;font-size:9.5px;font-weight:700;}
.home-free-bonus-rules i{color:#e99a3b;}
.home-free-bonus-cta{position:relative;z-index:1;min-width:170px;min-height:46px;padding:0 16px;border:0;border-radius:11px;background:linear-gradient(180deg,#f3a443,#e1872e);color:#1b1107;font:inherit;font-size:11.5px;font-weight:900;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:9px;box-shadow:0 9px 22px rgba(224,139,63,.23);transition:transform .14s,filter .14s;}
.home-free-bonus-cta:hover{transform:translateY(-1px);filter:brightness(1.05);}
.home-free-bonus-banner.free-bonus-claimed{border-color:rgba(75,194,115,.18);background:radial-gradient(420px 160px at 0% 120%,rgba(64,173,101,.11),transparent 68%),linear-gradient(180deg,rgba(25,31,27,.96),rgba(18,20,25,.97));}
.home-free-bonus-banner.free-bonus-claimed .home-free-bonus-burst{background:linear-gradient(145deg,#67d38d,#3baa66);}
.home-free-bonus-banner.free-bonus-claimed .home-free-bonus-kicker{color:#72d695;}
.home-free-bonus-banner.free-bonus-claimed .home-free-bonus-cta{background:rgba(73,184,111,.10);color:#7add9c;border:1px solid rgba(73,184,111,.22);box-shadow:none;}

@media(max-width:820px){
  .home-free-bonus-banner{grid-template-columns:auto minmax(0,1fr);gap:13px;padding:15px;}
  .home-free-bonus-cta{grid-column:1/-1;width:100%;}
}
@media(max-width:560px){
  .home-free-bonus-banner{grid-template-columns:46px minmax(0,1fr);padding:14px 13px;border-radius:14px;}
  .home-free-bonus-burst{width:46px;height:46px;border-radius:13px;font-size:20px;}
  .home-free-bonus-copy h2{font-size:20px;}
  .home-free-bonus-copy p{font-size:11px;}
  .home-free-bonus-rules{grid-column:1/-1;gap:5px;}
  .home-free-bonus-rules span{font-size:9px;}
}


/* v13 free-bonus banner polish */
.home-free-bonus-burst{background:linear-gradient(145deg,#f0a03f,#d87922);}
.free-bonus-burst-bolt{width:1.35em!important;height:1.35em!important;vertical-align:middle!important;margin:0!important;}
.home-free-bonus-kicker{display:flex;align-items:center;gap:7px;}
.free-bonus-kicker-bolt{width:1.05em!important;height:1.05em!important;vertical-align:-0.15em!important;margin:0!important;}
.free-bonus-pill-bolt{width:1em!important;height:1em!important;vertical-align:-0.12em!important;margin:0!important;}
.home-free-bonus-cta{background:linear-gradient(180deg,#f3a443,#e1872e)!important;color:#1b1107!important;border:1px solid rgba(255,190,110,.35)!important;box-shadow:0 12px 28px rgba(224,139,63,.28)!important;cursor:pointer!important;}
.home-free-bonus-cta:hover{transform:translateY(-1px);filter:brightness(1.05);}
.home-free-bonus-cta i{font-size:16px;}
.home-free-bonus-cta span{display:inline-block;}


/* v14 free-bonus home polish */
.home-free-bonus-burst{display:grid!important;place-items:center!important;}
.free-bonus-burst-bolt{width:24px!important;height:24px!important;vertical-align:0!important;margin:0!important;}
.home-free-bonus-kicker{display:flex!important;align-items:center!important;gap:7px!important;}
.free-bonus-kicker-bolt{width:12px!important;height:12px!important;vertical-align:0!important;margin:0!important;}
.home-free-bonus-rules span{display:inline-flex!important;align-items:center!important;gap:6px!important;}
.free-bonus-pill-bolt{width:12px!important;height:12px!important;vertical-align:0!important;margin:0!important;}
.home-free-bonus-cta{display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:9px!important;}
.home-free-bonus-cta .free-bonus-cta-bolt{width:14px!important;height:14px!important;}


/* v15 free bonus home banner cleanup */
.home-free-bonus-banner{align-items:center!important;}
.home-free-bonus-burst{display:grid!important;place-items:center!important;}
.free-bonus-burst-bolt{width:26px!important;height:26px!important;display:block!important;object-fit:contain!important;margin:0!important;}
.home-free-bonus-kicker{display:flex!important;align-items:center!important;gap:7px!important;}
.free-bonus-kicker-bolt{width:11px!important;height:11px!important;display:inline-block!important;object-fit:contain!important;margin:0!important;opacity:.95;}
.home-free-bonus-rules{display:flex!important;flex-wrap:wrap!important;gap:7px!important;}
.home-free-bonus-rules span{display:inline-flex!important;align-items:center!important;gap:6px!important;}
.free-bonus-pill-bolt{width:12px!important;height:12px!important;display:inline-block!important;object-fit:contain!important;margin:0!important;}
.home-free-bonus-cta{display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:9px!important;opacity:1!important;filter:none!important;cursor:pointer!important;}
.home-free-bonus-cta.guest-auth-required{opacity:1!important;filter:none!important;cursor:pointer!important;}
.home-free-bonus-cta .free-bonus-cta-bolt{width:14px!important;height:14px!important;display:inline-block!important;object-fit:contain!important;margin:0!important;}


/* v16 free bonus banner sizing */
.free-bonus-burst-bolt{width:34px!important;height:34px!important;display:block!important;object-fit:contain!important;margin:0 auto!important;}


/* v17 make home banner bolt fill the yellow square */
.home-free-bonus-burst{display:grid!important;place-items:center!important;overflow:hidden!important;}
.free-bonus-burst-bolt{
  width:75%!important;
  height:75%!important;
  max-width:none!important;
  max-height:none!important;
  object-fit:contain!important;
  display:block!important;
  margin:0 auto!important;
}

/* A guided first visit, using the existing game cards and site palette. */
.home-seo-intro{
  position:relative;overflow:hidden;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(310px,.8fr);
  align-items:center;gap:20px;min-height:365px;margin-bottom:0;padding:40px clamp(26px,4vw,60px);
  border-color:rgba(241,165,75,.18);border-radius:22px;
  background:radial-gradient(600px 340px at 88% 47%,rgba(207,110,34,.18),transparent 68%),
    radial-gradient(430px 330px at 10% 5%,rgba(43,88,124,.20),transparent 72%),
    linear-gradient(115deg,#1a1e25 0%,#11151b 52%,#1c1715 100%);
}
.home-intro-copy{position:relative;z-index:1;max-width:700px;}
.home-seo-intro h1{font-size:clamp(36px,4vw,62px);line-height:1.07;letter-spacing:-.045em;}
.home-seo-intro h1 em{font-style:normal;color:#f1a449;}
.home-seo-intro p{max-width:560px;margin-top:16px;color:#c6cbd3;font-size:16px;line-height:1.65;}
.home-seo-kicker{font-size:12px;letter-spacing:.13em;margin-bottom:13px;}
.home-intro-foot{display:block;margin-top:18px;color:#a7adb6;font-size:12px;line-height:1.4;}
.home-intro-foot a{color:#e8bb80;text-decoration:underline;text-underline-offset:3px;}
.home-intro-visual{position:relative;isolation:isolate;min-height:290px;display:grid;place-items:center;}
.home-visual-halo{position:absolute;width:260px;height:260px;border-radius:50%;border:1px solid rgba(245,165,77,.25);box-shadow:0 0 0 24px rgba(245,165,77,.028),0 0 0 52px rgba(245,165,77,.017),0 0 90px rgba(237,134,48,.17);transform:rotate(-22deg) scaleX(1.14);}
.home-visual-halo::before,.home-visual-halo::after{content:'';position:absolute;inset:23px;border-radius:50%;border:1px dashed rgba(241,160,69,.18);}
.home-visual-halo::after{inset:60px;border-style:solid;}
.home-visual-center{width:135px;height:135px;border-radius:28px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;z-index:1;background:linear-gradient(145deg,#353130,#191c22);border:1px solid rgba(255,202,122,.32);box-shadow:0 26px 45px rgba(0,0,0,.38),inset 0 2px 1px rgba(255,255,255,.07);transform:rotate(-10deg);}
.home-visual-center i{color:#f4a94b;font-size:51px;text-shadow:0 6px 22px rgba(240,149,59,.45)}
.home-visual-center span{font-size:11px;letter-spacing:.14em;font-weight:900;color:#f7d3a2;}
.home-visual-item{position:absolute;z-index:2;width:70px;height:70px;display:grid;place-items:center;border-radius:18px;color:#ece9e5;font-size:27px;border:1px solid rgba(255,255,255,.16);background:linear-gradient(150deg,#303944,#171c22);box-shadow:0 14px 32px rgba(0,0,0,.38);}
.home-visual-item.visual-item-a{top:22px;left:15%;transform:rotate(-16deg);color:#b9d8f4;}
.home-visual-item.visual-item-b{right:10%;top:52px;transform:rotate(15deg);color:#f6cb8a;}
.home-visual-item.visual-item-c{bottom:20px;left:23%;transform:rotate(11deg);color:#e9acd9;}
.home-visual-caption{position:absolute;bottom:5px;right:0;color:#b9a68d;font-size:10px;letter-spacing:.14em;font-weight:800;}
.home-path-section{margin-top:26px;}
.home-path-heading{display:block;margin-bottom:14px;}
.home-path-heading h2{margin:5px 0 0;font-size:clamp(21px,2vw,28px);line-height:1.2;color:#f6f7f9;letter-spacing:-.025em;}
.home-path-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;}
.home-path-card{position:relative;min-height:193px;display:flex;flex-direction:column;align-items:flex-start;padding:23px;border-radius:18px;text-decoration:none;color:#eef0f4;border:1px solid rgba(255,255,255,.09);background:linear-gradient(150deg,rgba(30,34,42,.98),rgba(18,21,27,.98));transition:transform .16s,border-color .16s,background .16s;}
.home-path-card:hover{transform:translateY(-3px);border-color:rgba(244,165,71,.42);background:linear-gradient(150deg,#303038,#191d23);}
.home-path-number{position:absolute;right:21px;top:20px;color:rgba(240,164,79,.32);font-size:28px;font-weight:900;letter-spacing:-.06em;}
.home-path-icon{width:44px;height:44px;display:grid;place-items:center;margin-bottom:15px;border-radius:12px;background:rgba(239,154,66,.13);color:#f3ad59;font-size:19px;}
.home-path-card strong{font-size:19px;line-height:1.25;}
.home-path-card>span:not(.home-path-number):not(.home-path-icon){margin-top:7px;font-size:14px;line-height:1.5;color:#b3bac5;}
.home-path-card b{margin-top:auto;padding-top:17px;color:#f0ac5c;font-size:14px;}
.home-path-card b i{margin-left:6px;transition:transform .16s;}
.home-path-card:hover b i{transform:translateX(4px);}
.home-path-section+.home-games-section{margin-top:31px;}
.home-games-section+.home-top-grid{margin-top:24px;}
@media(max-width:960px){
  .home-seo-intro{grid-template-columns:minmax(0,1fr) 240px;min-height:325px;padding:30px;}
  .home-intro-visual{min-height:230px;transform:scale(.8);transform-origin:center;}
  .home-path-card{padding:18px;min-height:220px;}
}
@media(max-width:700px){
  .home-seo-intro{display:block;min-height:0;padding:27px 21px;}
  .home-seo-intro h1{font-size:clamp(34px,8vw,45px);}
  .home-seo-intro p{font-size:15px;}
  .home-intro-visual{display:none;}
  .home-path-grid{grid-template-columns:1fr;gap:10px;}
  .home-path-card{min-height:0;padding:17px 19px;}
  .home-path-icon{margin-bottom:8px;}
  .home-path-card b{padding-top:12px;}
  .home-path-heading h2{font-size:23px;}
}
