/* =========================================================
   RoyalCrick Exchange — Blue & Black master stylesheet
   ========================================================= */

:root {
  --bg-0: #000000;
  --bg-1: #060912;
  --bg-2: #0b1226;
  --bg-3: #14213f;
  --line: #1e3a8a;
  --line-2: #2563eb;
  --text: #eaf0fb;
  --muted: #94a3b8;
  --accent: #2563eb;          /* blue-600 */
  --accent-2: #3b82f6;        /* blue-500 */
  --accent-3: #60a5fa;        /* blue-400 */
  --accent-4: #93c5fd;        /* blue-300 */
  --cyan: #22d3ee;
  --green: #10b981;
  --red: #ef4444;
  --gold-2: #60a5fa;          /* legacy hooks — now blue */
  --gold: #3b82f6;            /* legacy hooks — now blue */
  --radius: 12px;
  --shadow: 0 18px 44px rgba(0,0,0,.55);
  --max: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(1100px 600px at 12% -10%, rgba(37,99,235,.22) 0%, transparent 60%),
    radial-gradient(900px 500px at 110% 8%, rgba(34,211,238,.10) 0%, transparent 55%),
    var(--bg-0);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-3); text-decoration: none; }
a:hover { color: var(--accent-4); }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: "Poppins","Inter",sans-serif; letter-spacing: -.01em; line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-top: 0; }
h3 { font-size: 1.2rem; }
p { color: var(--text); }
.muted { color: var(--muted); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ============ Top Bar ============ */
.topbar {
  background: linear-gradient(90deg, #000, #0b1226 50%, #000);
  color: var(--accent-3);
  font-size: .85rem;
  padding: 7px 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.topbar strong { color: #fff; }
.topbar .pill {
  display: inline-block;
  background: rgba(37,99,235,.16);
  color: var(--accent-3);
  border: 1px solid rgba(96,165,250,.35);
  padding: 1px 8px;
  border-radius: 999px;
  margin: 0 6px;
  font-size: .75rem;
}

/* ============ Navigation ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: var(--max); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; color: #fff; }
.brand .logo {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  display:flex; align-items:center; justify-content:center;
  font-weight: 900; color: #fff;
  box-shadow: 0 8px 22px rgba(37,99,235,.45);
}
.brand span em { color: var(--accent-3); font-style: normal; }
.menu { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.menu a {
  color: var(--text); padding: 8px 12px; border-radius: 8px; font-weight: 500; font-size: .95rem;
}
.menu a:hover { background: var(--bg-2); color: var(--accent-3); }
.menu .cta {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  color: #fff; font-weight: 700; padding: 10px 16px; border-radius: 10px;
  box-shadow: 0 10px 24px rgba(37,99,235,.35);
}
.menu .cta:hover { filter: brightness(1.1); color: #fff; }
.mobile-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.6rem; cursor: pointer; }
@media (max-width: 960px) {
  .menu { display: none; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; background: var(--bg-1); padding: 12px; border-bottom: 1px solid var(--line); }
  .menu.open { display: flex; }
  .mobile-toggle { display: block; }
}

/* ============ Hero with image background ============ */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(6,9,18,.92) 70%, var(--bg-0) 100%),
    url("https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=2000&q=80");
  background-size: cover; background-position: center;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 360px at 18% 20%, rgba(37,99,235,.30) 0%, transparent 60%),
    radial-gradient(550px 320px at 88% 70%, rgba(34,211,238,.18) 0%, transparent 65%);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.hero h1 { margin: 0 0 12px; }
.hero h1 .hl {
  background: linear-gradient(90deg, var(--accent-3), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 24px; max-width: 560px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px; font-weight: 700; font-size: 1rem;
  border: 0; cursor: pointer; transition: all .15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--cyan)); color: #fff;
  box-shadow: 0 12px 28px rgba(37,99,235,.45);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.08); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent-2); color: var(--accent-3); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1fbb58; color: #fff; }
.trust-row { display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.trust-row .item { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: .92rem; }
.trust-row .item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }

.hero-card {
  background: linear-gradient(180deg, rgba(11,18,38,.95), rgba(6,9,18,.95));
  border: 1px solid var(--line); border-radius: 16px; padding: 0;
  box-shadow: var(--shadow); overflow: hidden;
}
.hero-card .photo {
  height: 180px;
  background-size: cover; background-position: center;
  background-image:
    linear-gradient(180deg, rgba(11,18,38,0) 0%, rgba(6,9,18,.85) 100%),
    url("https://images.unsplash.com/photo-1606925797300-0b35e9d1794e?auto=format&fit=crop&w=1200&q=80");
  position: relative;
}
.hero-card .photo::after {
  content: "🏆 IPL 2026"; position: absolute; bottom: 12px; left: 14px;
  background: rgba(37,99,235,.85); color: #fff; padding: 4px 12px; border-radius: 999px;
  font-size: .78rem; font-weight: 700;
}
.hero-card .body { padding: 22px; }
.hero-card h3 { margin: 0 0 6px; color: var(--accent-3); }
.hero-card .fee { font-size: 2.2rem; font-weight: 800; color: #fff; }
.hero-card .fee small { color: var(--muted); font-size: .9rem; font-weight: 400; }
.hero-card ul { padding: 0; margin: 14px 0; list-style: none; }
.hero-card li { padding: 8px 0; border-bottom: 1px dashed var(--line); display: flex; justify-content: space-between; font-size: .95rem; }
.hero-card li:last-child { border-bottom: 0; }
.hero-card li b { color: var(--cyan); }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

/* ============ Live Score Ticker ============ */
.ticker-wrap {
  background: linear-gradient(90deg, #000, #0b1226 50%, #000);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 10px 0;
}
.ticker {
  display: flex; gap: 40px; white-space: nowrap;
  animation: scroll 50s linear infinite;
}
.ticker .item { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: .9rem; }
.ticker .tag { background: var(--red); color: #fff; padding: 2px 8px; border-radius: 4px; font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.ticker .tag.upcoming { background: var(--accent); }
.ticker .tag.over { background: #475569; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ Sections ============ */
section { padding: 72px 0; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head .eyebrow {
  color: var(--accent-3); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .82rem;
}
.section-head h2 { margin: 8px auto 10px; max-width: 780px; }
.section-head p { color: var(--muted); max-width: 640px; margin: 0 auto; }

/* ============ Cards ============ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.card {
  background: linear-gradient(180deg, rgba(11,18,38,.85), rgba(6,9,18,.85));
  border: 1px solid var(--line); border-radius: 14px; padding: 22px;
  transition: all .25s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--accent-2); box-shadow: 0 16px 36px rgba(37,99,235,.18); }
.card h3 { margin: 0 0 10px; color: #fff; }
.card .tag-sm { display: inline-block; background: rgba(37,99,235,.15); color: var(--accent-3); border: 1px solid rgba(96,165,250,.3); padding: 3px 10px; border-radius: 999px; font-size: .75rem; margin-bottom: 10px; }
.card .card-img {
  width: 100%; height: 160px; border-radius: 10px; margin-bottom: 14px; object-fit: cover;
  border: 1px solid var(--line);
}

/* ============ Prediction cards ============ */
.pred-card {
  background: linear-gradient(180deg, rgba(11,18,38,.9), rgba(6,9,18,.95));
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.pred-card .banner {
  background:
    linear-gradient(90deg, rgba(0,0,0,.65), rgba(11,18,38,.85)),
    url("https://images.unsplash.com/photo-1599050751795-6cdaafbc2319?auto=format&fit=crop&w=1400&q=70");
  background-size: cover; background-position: center;
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: #cbd5e1;
}
.pred-card .banner .live { color: var(--red); font-weight: 700; }
.pred-card .body { padding: 20px; }
.teams { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.team { text-align: center; flex: 1; }
.team .crest {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  display:flex; align-items:center; justify-content:center; margin: 0 auto 8px;
  font-weight: 800; color: var(--accent-3);
  border: 2px solid var(--accent);
  box-shadow: 0 0 18px rgba(37,99,235,.35);
}
.team b { display: block; font-size: .95rem; }
.vs { color: var(--muted); font-weight: 700; padding: 0 10px; font-size: .9rem; }
.pick-row {
  display: flex; gap: 8px; margin: 12px 0; padding: 12px;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(96,165,250,.30); border-radius: 10px; font-size: .92rem;
}
.pick-row b { color: var(--accent-3); }
.odds-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.odds { background: rgba(255,255,255,.04); padding: 10px; border-radius: 8px; text-align: center; font-size: .85rem; border: 1px solid var(--line); }
.odds span { display: block; color: var(--muted); font-size: .72rem; }
.odds b { color: #fff; font-size: 1.05rem; }

/* ============ Bonus cards ============ */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.bonus {
  position: relative;
  background: linear-gradient(180deg, rgba(11,18,38,.92), rgba(6,9,18,.95));
  border: 1px solid var(--line); border-radius: 16px; padding: 28px 22px; text-align: center;
  overflow: hidden;
}
.bonus::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 220px at 50% -50%, rgba(37,99,235,.30), transparent 60%);
}
.bonus .pct { position: relative; font-size: 2.6rem; font-weight: 900; color: var(--accent-3); line-height: 1; text-shadow: 0 0 24px rgba(96,165,250,.45); }
.bonus h3 { position: relative; margin: 10px 0 8px; }
.bonus p { position: relative; color: var(--muted); font-size: .9rem; }
.bonus .badge { position: absolute; top: 12px; right: 12px; background: var(--red); color: #fff; padding: 3px 10px; border-radius: 999px; font-size: .68rem; font-weight: 700; text-transform: uppercase; }

/* ============ Tables ============ */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-1); }
table { width: 100%; border-collapse: collapse; min-width: 600px; }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; }
th { background: var(--bg-2); color: var(--accent-3); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
tr:last-child td { border-bottom: 0; }
tr:hover td { background: rgba(37,99,235,.06); }
td.win { color: var(--green); font-weight: 700; }
td.loss { color: var(--red); }

/* ============ Steps ============ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; counter-reset: step; }
.step {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 14px; padding: 24px; position: relative;
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -16px; left: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  color: #fff; font-weight: 900; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(37,99,235,.45);
}
.step h3 { margin-top: 6px; }

/* ============ FAQ / Accordion ============ */
.faq { max-width: 820px; margin: 0 auto; }
details {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 10px;
  padding: 16px 20px; margin-bottom: 10px;
}
details[open] { border-color: var(--accent-2); }
summary { cursor: pointer; font-weight: 600; color: #fff; font-size: 1rem; outline: none; list-style: none; position: relative; padding-right: 24px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 0; font-size: 1.3rem; color: var(--accent-3); }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); margin: 10px 0 0; }

/* ============ Comparison table ============ */
.compare th:first-child, .compare td:first-child { position: sticky; left: 0; background: var(--bg-2); z-index: 1; }
.check { color: var(--green); font-weight: 700; }
.x { color: var(--red); }

/* ============ CTA Band with image ============ */
.cta-band {
  position: relative; isolation: isolate;
  padding: 64px 0; text-align: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.85), rgba(6,9,18,.95)),
    url("https://images.unsplash.com/photo-1531415074968-036ba1b575da?auto=format&fit=crop&w=2000&q=80");
  background-size: cover; background-position: center;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(600px 240px at 50% 0%, rgba(37,99,235,.28), transparent 70%);
}
.cta-band h2 { max-width: 720px; margin: 0 auto 12px; }
.cta-band p { color: #cbd5e1; max-width: 600px; margin: 0 auto 22px; }

/* ============ Blog post cards with images ============ */
.post {
  background: linear-gradient(180deg, rgba(11,18,38,.85), rgba(6,9,18,.95));
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column; transition: all .25s ease;
}
.post:hover { transform: translateY(-3px); border-color: var(--accent-2); }
.post .thumb {
  aspect-ratio: 16/9;
  background-size: cover; background-position: center;
  background-color: var(--bg-3);
  position: relative;
}
.post .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 60%, rgba(6,9,18,.85) 100%);
}
.post .body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.post h3 { margin: 4px 0 8px; font-size: 1.1rem; }
.post .meta { font-size: .8rem; color: var(--muted); margin-bottom: 8px; }
.post p { flex: 1; color: var(--muted); font-size: .9rem; }
.post a.read { margin-top: 10px; font-weight: 700; color: var(--accent-3); }
.post a.read:hover { color: var(--accent-4); }

/* ============ Withdrawal proof ============ */
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.proof {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 12px; padding: 18px;
  position: relative; overflow: hidden;
}
.proof::before {
  content: ""; position: absolute; top: 0; right: 0; width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(16,185,129,.28), transparent 70%);
}
.proof .amt { font-size: 1.6rem; font-weight: 900; color: var(--green); position: relative; }
.proof .row { display: flex; justify-content: space-between; font-size: .85rem; color: var(--muted); padding: 4px 0; }
.proof .row b { color: #fff; }

/* ============ Footer ============ */
footer {
  background: linear-gradient(180deg, var(--bg-0), #000);
  border-top: 1px solid var(--line); padding: 56px 0 20px; margin-top: 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h4 { color: var(--accent-3); font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 14px; }
.footer-grid a { color: var(--muted); display: block; padding: 4px 0; font-size: .9rem; }
.footer-grid a:hover { color: var(--accent-3); }
.footer-bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: var(--muted); font-size: .82rem;
}
.age-warn { background: var(--red); color: #fff; font-weight: 800; padding: 2px 8px; border-radius: 4px; font-size: .75rem; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============ WhatsApp floating btn ============ */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 100;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.45);
  font-size: 1.6rem; text-decoration: none;
}
.wa-float:hover { color: #fff; transform: scale(1.06); }

/* ============ Breadcrumb ============ */
.breadcrumb { padding: 14px 0; font-size: .85rem; color: var(--muted); border-bottom: 1px solid var(--line); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent-3); }

/* ============ Article ============ */
.article { max-width: 860px; margin: 0 auto; padding: 40px 0; }
.article h1 { margin-bottom: 8px; }
.article .meta { color: var(--muted); font-size: .9rem; margin-bottom: 28px; }
.article h2 { margin-top: 36px; color: var(--accent-3); }
.article h3 { margin-top: 24px; }
.article ul, .article ol { padding-left: 22px; }
.article li { margin-bottom: 6px; }
.article blockquote {
  border-left: 3px solid var(--accent-2); background: var(--bg-1); padding: 14px 18px; margin: 20px 0;
  color: var(--text); font-style: italic; border-radius: 0 10px 10px 0;
}
.article code { background: var(--bg-3); padding: 2px 6px; border-radius: 4px; font-size: .9em; }
.article-cover { width: 100%; height: 380px; object-fit: cover; border-radius: 14px; margin-bottom: 28px; border: 1px solid var(--line); }

/* ============ Stats ============ */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.stat {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 12px; padding: 20px; text-align: center;
}
.stat b { display: block; font-size: 2rem; color: var(--accent-3); font-weight: 900; text-shadow: 0 0 18px rgba(96,165,250,.35); }
.stat span { color: var(--muted); font-size: .9rem; }

/* ============ Live blog ============ */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.entry { position: relative; margin-bottom: 20px; }
.entry::before { content: ""; position: absolute; left: -25px; top: 8px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 4px var(--bg-0); }
.entry .time { color: var(--accent-3); font-weight: 700; font-size: .85rem; margin-bottom: 4px; }
.entry .body { background: var(--bg-1); border: 1px solid var(--line); padding: 12px 16px; border-radius: 10px; }
.entry.big::before { background: var(--red); }

/* ============ Forms ============ */
.form { display: grid; gap: 14px; max-width: 560px; }
.form label { display: block; font-size: .88rem; color: var(--muted); margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 12px 14px; background: var(--bg-1);
  color: var(--text); border: 1px solid var(--line); border-radius: 10px; font-size: .95rem;
  font-family: inherit;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--accent-2); box-shadow: 0 0 0 3px rgba(37,99,235,.18); }

/* ============ Image utility ============ */
.media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 14px; }
.media {
  border-radius: 12px; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  position: relative;
}
.media .label { position: absolute; left: 12px; bottom: 12px; background: rgba(0,0,0,.65); color: #fff; padding: 4px 10px; border-radius: 999px; font-size: .78rem; }
.cover-img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; border-radius: 14px; border: 1px solid var(--line); }
.thumb-img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); }
.avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent-2); }
.testi { display: flex; gap: 14px; align-items: flex-start; }

/* ============ Section with image background ============ */
.bg-photo {
  position: relative; isolation: isolate;
}
.bg-photo::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.8), rgba(6,9,18,.95)),
    var(--photo, url("https://images.unsplash.com/photo-1593341646782-e0b495cff86d?auto=format&fit=crop&w=2000&q=80"));
}

/* ============ Utility ============ */
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 780px) { .row-2 { grid-template-columns: 1fr; } }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 36px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 24px; }
.hidden { display: none; }
