/* ===== RANZR — NEON IN SPACE v4 ===== */


:root {
  --bg: #0D0D1F;
  --bg2: #141430;
  --bg3: #1C1C42;
  --surface: rgba(255,255,255,0.04);
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.09);
  --glass-hover: rgba(255,255,255,0.14);
  --text: #EEEDF5;
  --text2: #9E9CB8;
  --text3: #605E7A;
  --lime: #C8FF2E;
  --cyan: #00F0FF;
  --pink: #FF2E8C;
  --orange: #FF8C2E;
  --blue: #4E7AFF;
  --yellow: #FFE44E;
  --purple: #B44EFF;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Rubik', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --r: 14px;
  --r-lg: 20px;
  --r-full: 999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-w: 700px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  word-spacing: 0.05em;
  font-weight: 400;
  
}

/* === STARFIELD === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1.2px 1.2px at 10% 20%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1px 1px at 30% 65%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.2px 1.2px at 55% 12%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 72% 80%, rgba(255,255,255,0.25), transparent),
    radial-gradient(1px 1px at 88% 38%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 15% 85%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 43% 48%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 92% 8%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 60% 55%, rgba(200,255,46,0.4), transparent),
    radial-gradient(1.5px 1.5px at 25% 32%, rgba(0,240,255,0.35), transparent),
    radial-gradient(1px 1px at 78% 22%, rgba(255,46,140,0.25), transparent),
    radial-gradient(1px 1px at 5% 52%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 38% 88%, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 65% 70%, rgba(255,228,78,0.25), transparent),
    radial-gradient(1px 1px at 50% 30%, rgba(78,122,255,0.3), transparent);
  pointer-events: none;
  z-index: 0;
}

/* === NEBULA === */
body::after {
  content: '';
  position: fixed;
  top: -35%;
  left: 50%;
  transform: translateX(-50%);
  width: 110vw;
  height: 70vh;
  background:
    radial-gradient(ellipse 500px 250px at 30% 50%, rgba(200,255,46,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 400px 200px at 70% 40%, rgba(0,240,255,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 350px 180px at 50% 60%, rgba(255,46,140,0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--lime); }

/* ===== HEADER ===== */
.site-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.logo-link {
  display: flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-decoration: none;
  filter: drop-shadow(0 0 10px rgba(200,255,46,0.15));
}
.logo-link .l1 { color: var(--pink); }
.logo-link .l2 { color: var(--orange); }
.logo-link .l3 { color: var(--lime); }
.logo-link .l4 { color: var(--cyan); }
.logo-link .l5 { color: var(--blue); }


.header-nav { display: flex; gap: 24px; align-items: center; }
.header-nav a {
  color: var(--text2);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--text); }

/* ===== MAIN ===== */
.page-wrap { max-width: var(--max-w); margin: 0 auto; padding: 10px 20px 80px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.tool-hero, .tool-card, .ad-slot, .seo-content, .related-tools,
.history-section, .category-section {
  animation: fadeUp 0.6s var(--ease) both;
}
.tool-hero { animation-delay: 0s; }
.tool-card { animation-delay: 0.08s; }
.category-section:nth-child(2) { animation-delay: 0.05s; }
.category-section:nth-child(3) { animation-delay: 0.1s; }
.category-section:nth-child(4) { animation-delay: 0.15s; }
.category-section:nth-child(5) { animation-delay: 0.2s; }

/* ===== HERO ===== */
.tool-hero { text-align: center; margin-bottom: 32px; padding-top: 16px; }
.tool-hero h1 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.tool-hero p {
  color: var(--text2);
  font-size: 15px;
  font-weight: 400;
  max-width: 420px;
  margin: 0 auto;
}

/* ===== TOOL CARD ===== */
.tool-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--glass-border);
  margin-bottom: 24px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}
.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,240,255,0.25), rgba(200,255,46,0.2), transparent);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 40px;
  border: none;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s var(--bounce), box-shadow 0.3s, filter 0.2s;
  outline: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.btn:active { transform: scale(0.94); }
.btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

.btn-coral { background: var(--pink); color: #fff; box-shadow: 0 0 20px rgba(255,46,140,0.35), 0 0 50px rgba(255,46,140,0.1); }
.btn-coral:hover { box-shadow: 0 0 28px rgba(255,46,140,0.5), 0 0 70px rgba(255,46,140,0.15); filter: brightness(1.1); }
.btn-gold { background: var(--lime); color: #0D0D1F; box-shadow: 0 0 20px rgba(200,255,46,0.25), 0 0 50px rgba(200,255,46,0.08); }
.btn-gold:hover { box-shadow: 0 0 28px rgba(200,255,46,0.4), 0 0 70px rgba(200,255,46,0.12); }
.btn-mint { background: var(--cyan); color: #0D0D1F; box-shadow: 0 0 20px rgba(0,240,255,0.25), 0 0 50px rgba(0,240,255,0.08); }
.btn-mint:hover { box-shadow: 0 0 28px rgba(0,240,255,0.4), 0 0 70px rgba(0,240,255,0.12); }
.btn-sky { background: var(--cyan); color: #0D0D1F; box-shadow: 0 0 20px rgba(0,240,255,0.25), 0 0 50px rgba(0,240,255,0.08); }
.btn-sky:hover { box-shadow: 0 0 28px rgba(0,240,255,0.4), 0 0 70px rgba(0,240,255,0.12); }
.btn-violet { background: var(--blue); color: #fff; box-shadow: 0 0 20px rgba(78,122,255,0.35), 0 0 50px rgba(78,122,255,0.1); }
.btn-violet:hover { box-shadow: 0 0 28px rgba(78,122,255,0.5), 0 0 70px rgba(78,122,255,0.15); }
.btn-outline { background: transparent; color: var(--text2); border: 1px solid var(--glass-border); box-shadow: none; }
.btn-outline:hover { background: rgba(255,255,255,0.05); color: var(--text); border-color: var(--glass-hover); }
.btn-sm { padding: 8px 22px; font-size: 11px; }
.btn-lg { padding: 16px 48px; font-size: 15px; }

/* ===== INPUTS ===== */
.input-field {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.input-field:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,240,255,0.08), 0 0 16px rgba(0,240,255,0.04);
}
.input-field::placeholder { color: var(--text3); }
textarea.input-field { resize: vertical; min-height: 120px; line-height: 1.6; }
.input-group { margin-bottom: 18px; }
.input-label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.input-row { display: flex; gap: 12px; align-items: center; }
.input-row .input-field { flex: 1; }
select.input-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23605E7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ===== RESULT ===== */
.result-area {
  text-align: center;
  padding: 28px 16px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.result-value {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  word-spacing: 0.08em;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -2px;
}
.result-sub { font-size: 13px; color: var(--text3); font-weight: 400; }
.result-pop { animation: resultPop 0.4s var(--bounce); }
@keyframes resultPop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== STATS ===== */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 16px 0 4px;
  margin-top: 16px;
  border-top: 1px solid var(--glass-border);
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.stat-label {
  font-size: 9px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-family: var(--font-display);
}

/* ===== HISTORY ===== */
.history-section { margin-top: 24px; animation: fadeUp 0.4s var(--ease) both; }
.history-title {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  color: var(--text3);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.history-list { display: flex; flex-wrap: wrap; gap: 6px; }
.history-chip {
  display: inline-block;
  padding: 5px 14px;
  background: var(--surface);
  border-radius: var(--r-full);
  font-size: 12px;
  color: var(--text2);
  border: 1px solid var(--glass-border);
  font-family: var(--font-mono);
}
.btn-clear-history {
  background: none; border: none; color: var(--text3);
  font-size: 10px; cursor: pointer; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700;
}
.btn-clear-history:hover { color: var(--pink); }

/* ===== HOMEPAGE ===== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.tool-tile {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 22px 12px 18px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--bounce), border-color 0.3s, box-shadow 0.3s;
}
.tool-tile::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r);
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(0,240,255,0.2), rgba(200,255,46,0.15), transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
}
.tool-tile:hover::before { opacity: 1; }
.tool-tile:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 16px 50px rgba(0,0,0,0.5), 0 0 20px rgba(0,240,255,0.04);
  color: var(--text);
}
.tool-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  font-family: var(--font-display);
  transition: transform 0.3s var(--bounce), box-shadow 0.3s;
}
.tool-tile:hover .tool-icon { transform: scale(1.15) rotate(-5deg); }
.tool-tile-name { font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.tool-tile-desc { font-size: 11px; color: var(--text3); line-height: 1.35; font-weight: 400; }

/* ===== CATEGORY ===== */
.category-section { margin-bottom: 44px; }
.category-title {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  padding-left: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--glass-border), transparent);
}

/* ===== SEO ===== */
.seo-content { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--glass-border); }
.seo-content h2 { font-family: var(--font-display); font-size: 22px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 12px; }
.seo-content h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin: 24px 0 8px; }
.seo-content p { color: var(--text2); font-size: 15px; margin-bottom: 14px; line-height: 1.8; font-weight: 400; }

/* ===== RELATED ===== */
.related-tools { margin-top: 48px; }
.related-tools h2 { font-family: var(--font-display); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 14px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); gap: 10px; }

/* ===== FOOTER ===== */
.site-footer {
  max-width: 1100px; margin: 0 auto; padding: 40px 24px;
  border-top: 1px solid var(--glass-border);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px;
}
.footer-left { font-size: 12px; color: var(--text3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: var(--text3); transition: color 0.2s; }
.footer-links a:hover { color: var(--text2); }

/* ===== AD ===== */
.ad-slot {
  background: var(--surface);
  border: 1px dashed rgba(255,255,255,0.04);
  border-radius: var(--r);
  min-height: 90px;
  display: flex; align-items: center; justify-content: center;
  margin: 28px 0;
  color: var(--text3);
  font-size: 10px;
}

/* ===== COIN ===== */
.coin-container { perspective: 800px; width: 150px; height: 150px; margin: 0 auto 24px; }
.coin { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; }
.coin.flipping { animation: coinFlip 0.9s var(--ease); }
@keyframes coinFlip {
  0% { transform: rotateY(0) scale(0.8); }
  40% { transform: rotateY(720deg) scale(1.15); }
  100% { transform: rotateY(1800deg) scale(1); }
}
.coin-face {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 48px; font-weight: 900;
  backface-visibility: hidden;
}
.coin-heads { background: linear-gradient(145deg, var(--lime), #80CC00); color: var(--bg); box-shadow: 0 0 35px rgba(200,255,46,0.25); }
.coin-tails { background: linear-gradient(145deg, var(--cyan), var(--blue)); color: #fff; transform: rotateY(180deg); box-shadow: 0 0 35px rgba(0,240,255,0.25); }
.coin.show-tails { transform: rotateY(180deg); }

/* ===== DICE — simple bounce, no crazy rotation ===== */
.dice-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 24px; }
.die {
  width: 72px; height: 72px; background: var(--bg2); border: 1.5px solid var(--glass-border);
  border-radius: var(--r); display: grid;
  grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr);
  padding: 12px; gap: 2px;
}
.die.rolling { animation: dieRoll 0.4s var(--bounce); }
@keyframes dieRoll {
  0% { transform: scale(1); }
  30% { transform: scale(0.75) translateY(-10px); }
  60% { transform: scale(1.1) translateY(0); }
  100% { transform: scale(1); }
}
.dot { width: 100%; height: 100%; border-radius: 50%; background: transparent; }
.dot.filled { background: var(--lime); box-shadow: 0 0 6px rgba(200,255,46,0.4); }

/* ===== WHEEL ===== */
.wheel-wrapper { position: relative; width: 300px; height: 300px; margin: 0 auto 24px; }
.wheel-canvas {
  width: 100%; height: 100%; border-radius: 50%;
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
  box-shadow: 0 0 50px rgba(0,0,0,0.5), 0 0 0 2px var(--glass-border);
}
.wheel-pointer {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 14px solid transparent; border-right: 14px solid transparent;
  border-top: 28px solid var(--lime);
  filter: drop-shadow(0 0 10px rgba(200,255,46,0.5));
  z-index: 2;
}

/* ===== COLOR SWATCH ===== */
.color-swatch { width: 160px; height: 160px; border-radius: var(--r-lg); margin: 0 auto 18px; border: 2px solid var(--glass-border); }
.color-info { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.color-hex { font-family: var(--font-mono); font-size: 20px; font-weight: 500; cursor: pointer; }
.color-hex:hover { color: var(--cyan); }
.color-rgb { font-size: 12px; color: var(--text3); font-family: var(--font-mono); }

/* ===== CARD ===== */
.playing-card {
  width: 115px; height: 165px; background: #FAFAF8;
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 700;
  box-shadow: 0 10px 35px rgba(0,0,0,0.5);
  margin: 0 auto 18px;
}
.card-red { color: #E03030; }
.card-black { color: #1A1A1A; }

/* ===== PASSWORD ===== */
.password-display {
  font-family: var(--font-mono); font-size: 17px; word-break: break-all;
  padding: 20px; background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border); border-radius: var(--r);
  text-align: center; margin-bottom: 14px; letter-spacing: 1.5px;
  user-select: all; cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.password-display:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,240,255,0.06), 0 0 20px rgba(0,240,255,0.04);
}
.strength-bar { height: 3px; border-radius: 2px; background: var(--surface); margin-bottom: 6px; overflow: hidden; }
.strength-fill { height: 100%; border-radius: 2px; transition: width 0.3s, background 0.3s; }

/* ===== RANGE ===== */
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; background: var(--bg3); border-radius: 2px; outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--cyan); cursor: pointer; border: 3px solid var(--bg);
  box-shadow: 0 0 10px rgba(0,240,255,0.3);
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cyan); cursor: pointer; border: 3px solid var(--bg);
}

/* ===== TOGGLE ===== */
.toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.toggle-label { font-size: 14px; color: var(--text2); }
.toggle { position: relative; width: 48px; height: 26px; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0; background: var(--bg3); border-radius: 13px;
  cursor: pointer; transition: background 0.3s;
}
.toggle-slider::before {
  content: ''; position: absolute; width: 20px; height: 20px; border-radius: 50%;
  background: var(--text2); top: 3px; left: 3px;
  transition: transform 0.3s var(--bounce), background 0.3s;
}
.toggle input:checked + .toggle-slider { background: var(--lime); box-shadow: 0 0 10px rgba(200,255,46,0.2); }
.toggle input:checked + .toggle-slider::before { transform: translateX(22px); background: var(--bg); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--bg3); color: var(--text); padding: 12px 30px;
  border-radius: var(--r-full); font-size: 14px; font-weight: 600;
  border: 1px solid var(--glass-hover);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  z-index: 1000;
  transition: transform 0.35s var(--bounce); pointer-events: none;
  font-family: var(--font-body);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== LEGAL ===== */
.legal-content { max-width: 600px; margin: 0 auto; }
.legal-content h1 { font-family: var(--font-display); font-size: 32px; font-weight: 900; letter-spacing: -1px; margin-bottom: 28px; }
.legal-content h2 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.legal-content p, .legal-content li { color: var(--text2); font-size: 15px; line-height: 1.8; margin-bottom: 10px; font-weight: 400; }
.legal-content ul { padding-left: 24px; margin-bottom: 14px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .site-header { padding: 14px 16px; }
  .logo-link { font-size: 22px; }
  .page-wrap { padding: 10px 16px 60px; }
  .tool-hero h1 { font-size: 28px; }
  .tool-card { padding: 24px 18px; }
  .result-value { font-size: 40px; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .tool-tile { padding: 16px 10px 14px; }
  .wheel-wrapper { width: 240px; height: 240px; }
  .stats-bar { gap: 20px; }
  .site-footer { flex-direction: column; text-align: center; }
  .input-row { flex-direction: column; }
  .coin-container { width: 120px; height: 120px; }
}
@media (max-width: 380px) {
  .logo-link { font-size: 20px; }
  .tool-hero h1 { font-size: 24px; }
  .result-value { font-size: 34px; letter-spacing: -1px; }
  .coin-container { width: 100px; height: 100px; }
  .wheel-wrapper { width: 200px; height: 200px; }
}

/* ===== FACE BUTTONS ===== */
.face-btn.active {
  background: var(--lime) !important;
  color: var(--bg) !important;
  border-color: var(--lime) !important;
  box-shadow: 0 0 12px rgba(200,255,46,0.25);
}
