/* Meteoro Casino — MOBILE-FIRST BENTO THEME
   meteorocasino.online — brand satellite for Brazil */

:root {
  --bg: #0a0a0f;
  --bg-2: #12131c;
  --bg-3: #1a1c28;
  --bg-4: #22242f;
  --border: #2a2d3d;
  --border-hi: #3d4256;

  --cyan: #00d9ff;
  --cyan-dim: #00a2c2;
  --orange: #ff8a3d;
  --orange-dim: #cc6a2f;
  --purple: #9b5cff;
  --green: #4ade80;
  --red: #f87171;
  --yellow: #fbbf24;

  --text: #f5f5fa;
  --text-mut: #a0a4b8;
  --text-dim: #6b7185;

  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --mono: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
  --shadow-1: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-2: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 24px rgba(0, 217, 255, 0.2);
}

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

body {
  font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}

/* Subtle grid backdrop — mobile-first tech aesthetic */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 217, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

main, header, footer, section { position: relative; z-index: 1; }

a { color: var(--cyan); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text);
}
h1 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 18px; letter-spacing: -0.03em; }
h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
h3 { font-size: 19px; margin-bottom: 10px; }
h4 { font-size: 15px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-mut); }
p { margin-bottom: 12px; color: var(--text-mut); font-size: 15px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 32px; height: 32px;
  background: url('meteoro-icon.png') center/contain no-repeat;
  filter: drop-shadow(0 0 6px rgba(255, 138, 61, 0.4));
}
.logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--cyan); }

.site-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.site-nav a {
  color: var(--text-mut);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s;
}
.site-nav a:hover { color: var(--text); background: var(--bg-3); }
.site-nav a.active { color: var(--cyan); background: rgba(0, 217, 255, 0.08); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--cyan);
  color: var(--bg);
}
.btn-primary:hover {
  background: #33e2ff;
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}
.btn-orange {
  background: var(--orange);
  color: var(--bg);
}
.btn-orange:hover { background: #ffa25c; color: var(--bg); }
.btn-ghost {
  background: var(--bg-3);
  color: var(--text);
  border: 1px solid var(--border-hi);
}
.btn-ghost:hover { background: var(--bg-4); color: var(--text); }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 12px; }

/* ============ HERO — bento layout ============ */
.hero {
  padding: 50px 0 30px;
  position: relative;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-3);
  border: 1px solid var(--border-hi);
  color: var(--cyan);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: var(--mono);
}
.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero h1 .accent {
  color: var(--cyan);
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: 16px;
  color: var(--text-mut);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.trust-row { display: flex; gap: 16px; flex-wrap: wrap; }
.trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
  font-family: var(--mono);
}
.trust-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }

/* ============ BENTO GRID (unique layout for this sat) ============ */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 16px;
  margin: 40px 0;
}
.bento-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}
.bento-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-2px);
}
.bento-card.accent-cyan { background: linear-gradient(135deg, rgba(0, 217, 255, 0.08), var(--bg-2)); border-color: rgba(0, 217, 255, 0.25); }
.bento-card.accent-orange { background: linear-gradient(135deg, rgba(255, 138, 61, 0.08), var(--bg-2)); border-color: rgba(255, 138, 61, 0.25); }
.bento-card.accent-purple { background: linear-gradient(135deg, rgba(155, 92, 255, 0.08), var(--bg-2)); border-color: rgba(155, 92, 255, 0.25); }
.bento-card .bt-label {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.bento-card .bt-value {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 8px;
}
.bento-card .bt-value.orange { color: var(--orange); }
.bento-card .bt-value.purple { color: var(--purple); }
.bento-card p { font-size: 13px; color: var(--text-mut); margin: 6px 0 0; }
.bento-card h3 { font-size: 17px; margin-bottom: 4px; }
.bento-card a { display: inline-block; margin-top: 10px; font-size: 12px; color: var(--cyan); font-weight: 600; }

/* Bento cell sizes */
.b-6-2 { grid-column: span 6; grid-row: span 2; }
.b-6-1 { grid-column: span 6; grid-row: span 1; }
.b-4-2 { grid-column: span 4; grid-row: span 2; }
.b-4-1 { grid-column: span 4; grid-row: span 1; }
.b-3-1 { grid-column: span 3; grid-row: span 1; }
.b-8-1 { grid-column: span 8; grid-row: span 1; }

/* ============ STATS BAR ============ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 22px 0 42px;
}
.stat-cell {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
}
.stat-cell .stat-lbl { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; font-family: var(--mono); }
.stat-cell .stat-num { font-family: var(--mono); font-size: 26px; color: var(--cyan); font-weight: 700; line-height: 1; }
.stat-cell .stat-num.orange { color: var(--orange); }

/* ============ SECTION ============ */
.section { padding: 60px 0; }
.section-eyebrow {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--mono);
}
.section-title { margin-bottom: 12px; }
.section-lead {
  color: var(--text-mut);
  max-width: 640px;
  margin-bottom: 36px;
  font-size: 15px;
}

/* ============ TABLES ============ */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 20px 0;
  font-size: 14px;
}
.spec-table th, .spec-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.spec-table th {
  background: var(--bg-3);
  color: var(--cyan);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--mono);
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td:first-child { color: var(--text); font-weight: 600; }
.spec-table td { color: var(--text-mut); }
.spec-table tr:hover td { background: rgba(0, 217, 255, 0.03); }

/* ============ CARDS ============ */
.card-grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all 0.15s;
}
.card:hover {
  border-color: var(--border-hi);
  transform: translateY(-2px);
}
.card h3 { margin-bottom: 8px; font-size: 17px; }
.card p { font-size: 13px; color: var(--text-mut); }

/* ============ MINI-GAMES ============ */
.game-panel {
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative;
}
.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.game-title {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.demo-tag {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--bg-3);
  color: var(--cyan);
  border: 1px solid var(--border-hi);
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--mono);
}

.game-msg {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--mono);
  margin: 12px 0 6px;
}
.msg-info { background: rgba(155, 92, 255, 0.08); color: var(--text-mut); border-left: 3px solid var(--purple); }
.msg-win { background: rgba(74, 222, 128, 0.08); color: var(--green); border-left: 3px solid var(--green); }
.msg-lose { background: rgba(248, 113, 113, 0.08); color: var(--red); border-left: 3px solid var(--red); }

.disc-note {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 10px;
  font-family: var(--mono);
}

/* ============ FAQ ============ */
.faq-list { max-width: 820px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg-2);
}
.faq-item[open] { border-color: var(--cyan); }
.faq-q {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.faq-q::after {
  content: '＋';
  color: var(--cyan);
  font-size: 18px;
  transition: transform 0.2s;
  font-family: var(--mono);
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-q::-webkit-details-marker { display: none; }
.faq-a {
  padding: 0 20px 18px;
  color: var(--text-mut);
  font-size: 13px;
  line-height: 1.7;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(155, 92, 255, 0.08));
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { margin-bottom: 12px; font-size: 28px; }
.cta-banner p { color: var(--text-mut); max-width: 540px; margin-bottom: 22px; font-size: 15px; }
.cta-note { margin-top: 16px; font-size: 12px; color: var(--text-dim); font-family: var(--mono); }

/* ============ AUTHOR BAR + BOX ============ */
.author-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 20px 0 32px;
  font-size: 13px;
  color: var(--text-dim);
}
.author-bar .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--cyan);
}
.author-bar .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author-bar .author-meta { flex: 1; line-height: 1.4; }
.author-bar .author-name { color: var(--text); font-weight: 700; font-size: 14px; }
.author-bar .author-name a { color: var(--text); }
.author-bar .author-name a:hover { color: var(--cyan); }
.author-bar .author-role {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  margin-left: 6px;
  font-family: var(--mono);
}
.author-bar .verified-tag {
  display: inline-block;
  background: rgba(74, 222, 128, 0.12);
  color: var(--green);
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-left: 6px;
  vertical-align: middle;
  font-family: var(--mono);
}
.author-bar .dates { color: var(--text-dim); font-size: 12px; margin-top: 2px; font-family: var(--mono); }

.author-box {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  padding: 26px;
  background: var(--bg-2);
  border: 1px solid var(--cyan);
  border-radius: var(--radius-lg);
  margin: 40px 0 30px;
  align-items: start;
}
.author-box .avatar-lg {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--cyan);
}
.author-box .avatar-lg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author-box h3 { font-size: 20px; margin-bottom: 4px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.author-box h3 a { color: var(--text); }
.author-box h3 a:hover { color: var(--cyan); }
.author-box .box-role { color: var(--cyan); font-size: 13px; font-weight: 600; margin-bottom: 10px; font-family: var(--mono); }
.author-box p { font-size: 13.5px; color: var(--text-mut); margin-bottom: 10px; }
.author-box .author-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--mono);
}
.author-box .author-stats strong { color: var(--cyan); }
.author-box .author-links { display: flex; gap: 14px; margin-top: 12px; font-size: 12px; }
.author-box .author-links a { color: var(--cyan); font-weight: 600; font-family: var(--mono); }
@media (max-width: 640px) {
  .author-box { grid-template-columns: 1fr; }
  .author-box .avatar-lg { margin: 0 auto; }
}

/* ============ BREADCRUMBS ============ */
.crumbs {
  padding: 22px 0 10px;
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--mono);
  letter-spacing: 0.5px;
}
.crumbs a { color: var(--text-mut); }
.crumbs .sep { margin: 0 8px; color: var(--cyan); }

/* ============ CALLOUT ============ */
.callout {
  background: var(--bg-2);
  border-left: 3px solid var(--cyan);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}
.callout strong { color: var(--cyan); }

/* ============ PROS/CONS ============ */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.pros, .cons { padding: 20px 22px; border-radius: var(--radius); border: 1px solid var(--border); }
.pros { background: rgba(74, 222, 128, 0.04); border-color: rgba(74, 222, 128, 0.25); }
.cons { background: rgba(248, 113, 113, 0.04); border-color: rgba(248, 113, 113, 0.25); }
.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }
.pros ul, .cons ul { list-style: none; }
.pros li, .cons li { padding: 5px 0 5px 22px; position: relative; font-size: 13.5px; color: var(--text-mut); }
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons li::before { content: '−'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ============ PROMO CODE BOX ============ */
.promo-box {
  background: var(--bg-2);
  border: 1px dashed var(--cyan);
  border-radius: var(--radius);
  padding: 22px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.promo-lbl { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; font-family: var(--mono); }
.promo-code { font-family: var(--mono); font-size: 24px; font-weight: 700; color: var(--cyan); letter-spacing: 2px; }

/* ============ STEPS ============ */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 20px 0; }
.steps li {
  counter-increment: step;
  padding: 20px 22px 20px 66px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  position: relative;
  color: var(--text-mut);
  font-size: 14px;
  line-height: 1.7;
}
.steps li::before {
  content: '0' counter(step);
  position: absolute;
  left: 20px; top: 20px;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--bg-3);
  color: var(--cyan);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-hi);
}
.steps strong { color: var(--text); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 46px 0 26px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
}
.footer-col h4 {
  font-size: 12px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-family: var(--mono);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-mut); font-size: 13px; }
.footer-col a:hover { color: var(--cyan); }
.footer-brand p { font-size: 13px; color: var(--text-mut); margin-top: 12px; max-width: 340px; }
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: var(--text-dim);
  font-family: var(--mono);
}
.footer-bottom p { color: var(--text-dim); max-width: 780px; margin: 0; font-family: 'Inter', sans-serif; font-size: 12px; }
.age-tag {
  background: var(--orange);
  color: var(--bg);
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 11px;
  font-family: var(--mono);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proscons { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .bento { grid-template-columns: repeat(6, 1fr); }
  .b-6-2, .b-6-1 { grid-column: span 6; }
  .b-4-2, .b-4-1 { grid-column: span 3; }
  .b-3-1 { grid-column: span 3; }
  .b-8-1 { grid-column: span 6; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento > * { grid-column: span 1 !important; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
}

/* CTA-link universal cursor for span/button elements */
.cta-link { cursor: pointer; }
