/* ============================================
   JURASSIC GAME ROOM - Main Stylesheet
   ============================================ */

:root {
  --green: #00ff41;
  --green-mid: #00cc33;
  --green-dark: #007a1f;
  --black: #030f03;
  --card-bg: rgba(0, 20, 5, 0.88);
  --border: rgba(0, 255, 65, 0.22);
  --gold: #ffd700;
  --gold2: #ffaa00;
  --white: #e0ffe8;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: "Exo 2", sans-serif;
  overflow-x: hidden;
}

/* Scanline effect */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.07) 2px, rgba(0,0,0,0.07) 4px
  );
  pointer-events: none;
  z-index: 9998;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  background: rgba(3, 15, 3, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
  box-shadow: 0 0 12px var(--green);
}

.nav-brand-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 10px rgba(0,255,65,0.4);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,255,65,0.09);
  border: 1px solid var(--border);
  color: var(--green);
  text-decoration: none;
  transition: all 0.3s;
}
.nav-icon-btn:hover {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 14px var(--green);
}

.btn-claim {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  border: none;
  padding: 9px 15px;
  border-radius: 24px;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 16px rgba(255,215,0,0.35);
  transition: all 0.3s;
}
.btn-claim:hover { transform: scale(1.05); box-shadow: 0 0 26px rgba(255,215,0,0.65); }

.btn-signup-nav {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #000;
  border: none;
  padding: 9px 15px;
  border-radius: 24px;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 16px rgba(0,255,65,0.35);
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-signup-nav:hover { transform: scale(1.05); box-shadow: 0 0 26px rgba(0,255,65,0.65); }

/* ── HERO ── */
.hero {
  margin-top: 68px;
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px 18px 44px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.36);
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,255,65,0.06) 0%, rgba(3,15,3,0.75) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  width: 100%;
}

.hero-logo {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 3px solid var(--green);
  box-shadow: 0 0 28px var(--green), 0 0 56px rgba(0,255,65,0.25);
  margin-bottom: 14px;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 28px var(--green), 0 0 56px rgba(0,255,65,0.25); }
  50%       { box-shadow: 0 0 48px var(--green), 0 0 96px rgba(0,255,65,0.45); }
}

.hero-banner {
  width: 100%;
  max-width: 490px;
  border-radius: 16px;
  border: 2px solid rgba(0,255,65,0.25);
  box-shadow: 0 0 38px rgba(0,255,65,0.16);
  margin-bottom: 16px;
}

.hero-trust {
  font-size: 12px;
  color: var(--green);
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.hero-trust span { color: var(--gold); font-size: 14px; font-weight: 800; }

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-host {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,255,65,0.09);
  border: 2px solid var(--green);
  color: var(--green);
  padding: 11px 20px;
  border-radius: 30px;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
.btn-host .notif-dot {
  position: absolute;
  top: -4px; right: -4px;
  width: 11px; height: 11px;
  background: #ff3b3b;
  border-radius: 50%;
  border: 2px solid var(--black);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.2;} }
.btn-host:hover { background: var(--green); color: #000; box-shadow: 0 0 20px var(--green); }

.btn-hero-signup {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  padding: 11px 22px;
  border-radius: 30px;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(255,215,0,0.42);
}
.btn-hero-signup:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(255,215,0,0.72); }

/* ── LIVE WINNERS TICKER ── */
.winners-ticker {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0,20,5,0.97), rgba(0,8,2,1));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  white-space: nowrap;
}
.winners-ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 46px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(270deg, var(--black), transparent);
}

.ticker-label {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px 0 18px;
  background: linear-gradient(90deg, var(--black) 65%, transparent);
  font-family: "Orbitron", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green);
  text-transform: uppercase;
}
.ticker-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.5s ease-in-out infinite;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  padding-left: 90px;
  animation: ticker-scroll 42s linear infinite;
  will-change: transform;
}
.winners-ticker:hover .ticker-track { animation-play-state: paused; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 24px;
  font-size: 13px;
  border-right: 1px solid rgba(0,255,65,0.14);
}
.ticker-item .ticker-icon { font-size: 15px; }
.ticker-item .ticker-name { color: var(--white); font-weight: 800; }
.ticker-item .ticker-won {
  color: rgba(224,255,232,0.4);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ticker-item .ticker-amt {
  color: var(--green);
  font-weight: 800;
  text-shadow: 0 0 8px rgba(0,255,65,0.4);
}
.ticker-item .ticker-game {
  color: rgba(224,255,232,0.32);
  font-size: 11px;
  font-style: italic;
}

/* ── SECTION COMMON ── */
section {
  padding: 54px 18px;
  max-width: 680px;
  margin: 0 auto;
}

.section-label {
  font-family: "Orbitron", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 7px;
  text-align: center;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 8vw, 48px);
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.05;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 30%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  text-align: center;
  color: rgba(224,255,232,0.52);
  font-size: 13px;
  margin-bottom: 28px;
  line-height: 1.65;
}

.divider {
  width: 54px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  margin: 8px auto 26px;
  border-radius: 2px;
}

.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.32;
}

/* ── GAMES GRID ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.game-card:hover {
  border-color: var(--green);
  box-shadow: 0 0 16px rgba(0,255,65,0.18);
  transform: translateY(-3px);
}

.game-thumb {
  width: 100%;
  height: 85px;
  object-fit: cover;
  display: block;
}

.game-thumb-placeholder {
  width: 100%;
  height: 85px;
  background: linear-gradient(135deg, rgba(0,255,65,0.08), rgba(0,50,10,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.game-info {
  padding: 8px 8px 10px;
  text-align: center;
}

.game-num {
  font-family: "Orbitron", monospace;
  font-size: 8px;
  color: var(--white);
  letter-spacing: 1.5px;
  margin-bottom: 2px;
}

.game-name {
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.game-btns {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.game-btn {
  flex: 1;
  padding: 5px 3px;
  border-radius: 16px;
  font-size: 9px;
  font-weight: 700;
  font-family: "Exo 2", sans-serif;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.game-btn.play { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #000; }
.game-btn.dl   { background: rgba(0,255,65,0.12); color: var(--green); border: 1px solid rgba(0,255,65,0.28); }
.game-btn:hover { transform: scale(1.06); }

/* ── PAYMENT ── */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.payment-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.3s;
}
.payment-card:hover {
  border-color: var(--green);
  box-shadow: 0 0 13px rgba(0,255,65,0.18);
  transform: translateY(-2px);
}
.payment-card img {
  width: 40px; height: 40px;
  object-fit: contain;
  border-radius: 8px;
}
.payment-card span {
  font-size: 10px;
  font-weight: 700;
  color: rgba(224,255,232,0.62);
  letter-spacing: 0.4px;
  text-align: center;
}

/* ── HOW TO PLAY ── */
.steps { display: flex; flex-direction: column; gap: 13px; }

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 15px;
  transition: all 0.3s;
}
.step-card:hover { border-color: var(--green); box-shadow: 0 0 13px rgba(0,255,65,0.12); }

.step-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  color: var(--green);
  line-height: 1;
  min-width: 32px;
  text-shadow: 0 0 13px rgba(0,255,65,0.42);
}
.step-body h4 { font-weight: 800; font-size: 15px; color: #fff; margin-bottom: 4px; }
.step-body p  { font-size: 13px; color: rgba(224,255,232,0.55); line-height: 1.55; }

.how-play-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ── SUBSCRIBE ── */
.subscribe-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subscribe-box::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(0,255,65,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.subscribe-box h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 27px; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 6px;
}
.subscribe-box > p { font-size: 13px; color: rgba(224,255,232,0.52); margin-bottom: 18px; }

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 13px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.form-input {
  background: rgba(0,255,65,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--white);
  font-family: "Exo 2", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-input::placeholder { color: rgba(224,255,232,0.3); }
.form-input:focus { border-color: var(--green); box-shadow: 0 0 8px rgba(0,255,65,0.13); }
.form-input.invalid { border-color: #ff4d4d; box-shadow: 0 0 8px rgba(255,77,77,0.18); }

.form-error {
  color: #ff6b6b;
  font-size: 12px;
  font-weight: 700;
  margin: 8px 2px 0;
  min-height: 14px;
}

.btn-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000; border: none;
  border-radius: 30px;
  font-family: "Exo 2", sans-serif;
  font-weight: 800; font-size: 15px;
  cursor: pointer; letter-spacing: 0.5px;
  transition: all 0.3s; text-transform: uppercase;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 0 22px rgba(255,215,0,0.55); }

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.87);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 18px;
  backdrop-filter: blur(7px);
}
.modal-overlay.active { display: flex; }

.modal-box {
  background: #030f03;
  border: 1px solid var(--green);
  border-radius: 20px;
  padding: 28px 22px;
  max-width: 390px; width: 100%;
  box-shadow: 0 0 48px rgba(0,255,65,0.26);
  position: relative;
  animation: modal-in 0.3s ease;
}
@keyframes modal-in { from{transform:scale(0.9);opacity:0;} to{transform:scale(1);opacity:1;} }

.modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none; border: none;
  color: rgba(224,255,232,0.42);
  font-size: 20px; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--green); }

.modal-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 27px; letter-spacing: 2px;
  color: var(--gold); text-align: center; margin-bottom: 4px;
}
.modal-sub { text-align: center; font-size: 13px; color: rgba(224,255,232,0.48); margin-bottom: 18px; }

/* ── THANK YOU ── */
.thankyou-box { display: none; text-align: center; padding: 16px 0; }
.thankyou-box.active { display: block; }
.thankyou-icon { font-size: 52px; margin-bottom: 11px; animation: bounce 0.6s ease; }
@keyframes bounce { 0%{transform:scale(0);} 60%{transform:scale(1.2);} 100%{transform:scale(1);} }
.thankyou-box h3 { font-family:"Bebas Neue",sans-serif; font-size:23px; letter-spacing:2px; color:var(--green); margin-bottom:7px; }
.thankyou-box p  { font-size:13px; color:rgba(224,255,232,0.63); line-height:1.6; }

/* ── FLOATING CHAT ── */
.float-chat-btn {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 1500;
  background: var(--green);
  color: #000;
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,255,65,0.45);
  transition: all 0.3s;
  position: fixed;
}
.float-chat-btn .notif-dot {
  position: absolute;
  top: -4px; right: -4px;
  width: 12px; height: 12px;
  background: #ff3b3b;
  border-radius: 50%;
  border: 2px solid #030f03;
  animation: blink 1.5s ease-in-out infinite;
}
.float-chat-btn:hover { transform: scale(1.06); box-shadow: 0 4px 30px rgba(0,255,65,0.65); }

.chat-popup {
  position: fixed;
  bottom: 80px; right: 22px;
  z-index: 1499;
  width: 290px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  overflow: hidden;
  display: none;
  animation: popup-in 0.3s ease;
}
.chat-popup.active { display: block; }
@keyframes popup-in { from{transform:translateY(10px);opacity:0;} to{transform:translateY(0);opacity:1;} }

.chat-popup-header {
  background: #fff;
  padding: 14px 14px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eee;
}
.chat-popup-header img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
}
.chat-popup-header-info {}
.chat-popup-header-name { font-weight: 800; font-size: 14px; color: #000; }
.chat-popup-header-status { font-size: 11px; color: #666; }

.chat-popup-close {
  margin-left: auto;
  background: none; border: none;
  color: #999; font-size: 18px;
  cursor: pointer; line-height: 1;
}

.chat-popup-body {
  padding: 14px;
  background: #f5f5f5;
}
.chat-bubble {
  background: #fff;
  border-radius: 12px 12px 12px 0;
  padding: 10px 12px;
  font-size: 13px;
  color: #222;
  line-height: 1.5;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 4px;
}
.chat-time { font-size: 10px; color: #aaa; margin-bottom: 12px; }

.chat-popup-footer {
  padding: 12px 14px;
  background: #fff;
}
.chat-messenger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px;
  background: #0084ff;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.chat-messenger-btn:hover { background: #0070d9; transform: scale(1.02); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 26px 18px;
  text-align: center;
}
.footer-logo {
  width: 55px; height: 55px;
  border-radius: 50%;
  border: 2px solid var(--green);
  margin: 0 auto 10px;
  display: block;
  box-shadow: 0 0 13px rgba(0,255,65,0.26);
}
.footer-name { font-family:"Bebas Neue",sans-serif; font-size:18px; letter-spacing:3px; color:var(--green); margin-bottom:11px; }
.footer-links { display:flex; justify-content:center; gap:16px; margin-bottom:13px; }
.footer-links a { display:flex; align-items:center; gap:6px; color:rgba(224,255,232,0.52); text-decoration:none; font-size:13px; font-weight:600; transition:color 0.3s; }
.footer-links a:hover { color:var(--green); }
.footer-copy { font-size:10px; color:rgba(224,255,232,0.26); letter-spacing:1px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(20px); transition:opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── MESSAGE COPIED TOAST ──
   Shown when a payment / game / signup link copies its pre-written
   message to the clipboard as a fallback for Messenger's prefill.
── */
.msg-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 16px);
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: "Exo 2", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(0,255,65,0.22), 0 6px 18px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  z-index: 99999;
  transition: opacity 0.28s ease, transform 0.28s ease;
  max-width: 86vw;
  text-align: center;
}
.msg-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.msg-toast .msg-toast-icon { color: var(--green); font-size: 16px; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  nav { padding: 8px 12px; }
  .nav-brand img { height: 40px; width: 40px; }
  .nav-brand-name { font-size: 15px; }
  .btn-claim, .btn-signup-nav { padding: 8px 11px; font-size: 11px; }
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .payment-grid { grid-template-columns: repeat(4, 1fr); gap: 7px; }
  .payment-card img { width: 32px; height: 32px; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 42px 14px; }
  .hero-logo { width: 86px; height: 86px; }
  .chat-popup { width: 270px; right: 12px; }
  .float-chat-btn { right: 12px; bottom: 16px; font-size: 13px; padding: 10px 15px; }
  .ticker-label { font-size: 9px; padding: 0 10px 0 12px; }
  .ticker-track { padding-left: 72px; animation-duration: 32s; }
  .ticker-item { padding: 0 16px; font-size: 12px; gap: 5px; }
  .ticker-item .ticker-game { display: none; }
  .hero { min-height: 0; padding: 22px 16px 28px; }
  .msg-toast { font-size: 12px; padding: 10px 16px; bottom: 80px; }
}
