/* ============================================================
   TAJ777 — Royal Indian Elegance Design System
   tajs777.com
   ============================================================ */

:root {
  --primary: #0088cc;
  --primary-dark: #006da3;
  --primary-light: #33a3dd;
  --bg-body: #fdfbfe;
  --bg-section: #f5f0f8;
  --bg-dark: #2c3e50;
  --bg-dark-2: #22303f;
  --bg-card: #ffffff;
  --border: #e8dff0;
  --text-primary: #2c3e50;
  --text-secondary: #7b8a9e;
  --accent: #e74c3c;
  --accent-dark: #c0392b;
  --gold: #f1c40f;
  --gold-dark: #d4ac0d;

  --arch: 24px 24px 12px 12px;
  --shadow-sm: 0 2px 10px rgba(44, 62, 80, 0.06);
  --shadow-md: 0 8px 30px rgba(44, 62, 80, 0.10);
  --shadow-lg: 0 20px 50px rgba(44, 62, 80, 0.15);
  --shadow-gold: 0 6px 24px rgba(241, 196, 15, 0.30);
  --maxw: 1180px;
  --radius: 14px;
  --trans: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--text-primary);
  background-color: var(--bg-body);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Subtle Islamic geometric pattern overlay on body */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.025;
  background-image:
    radial-gradient(circle at 50% 0%, transparent 0, transparent 9px, var(--primary) 9px, var(--primary) 10px, transparent 10px),
    radial-gradient(circle at 0% 50%, transparent 0, transparent 9px, var(--primary) 9px, var(--primary) 10px, transparent 10px);
  background-size: 40px 40px;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-primary);
  letter-spacing: 0.2px;
}

.serif { font-family: 'DM Serif Display', serif; }
.gold-text { color: var(--gold-dark); }
.accent-text { color: var(--accent); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section { padding: 76px 0; position: relative; }
.section-tight { padding: 52px 0; }
.bg-section { background: var(--bg-section); }
.bg-dark { background: var(--bg-dark); color: #eaf1f6; }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }

/* Section header with arch top ornament */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head .eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0, 136, 204, 0.08);
  padding: 6px 16px;
  border-radius: 20px 20px 6px 6px;
  margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 14px; }
.section-head p { color: var(--text-secondary); font-size: 1.06rem; }
.bg-dark .section-head p { color: #b8c6d3; }

/* Gold arch divider ornament */
.arch-ornament {
  width: 66px; height: 34px; margin: 0 auto 18px;
  border: 2.5px solid var(--gold);
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  position: relative;
}
.arch-ornament::after {
  content: "777";
  position: absolute; bottom: -11px; left: 50%; transform: translateX(-50%);
  font-family: 'DM Serif Display', serif;
  font-size: 0.9rem; color: var(--gold-dark);
  background: var(--bg-body); padding: 0 6px;
}
.bg-section .arch-ornament::after { background: var(--bg-section); }
.bg-dark .arch-ornament::after { background: var(--bg-dark); color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 14px 30px; border-radius: 12px 12px 6px 6px;
  border: none; cursor: pointer; transition: all var(--trans);
  text-align: center; line-height: 1.2;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; box-shadow: 0 6px 20px rgba(231, 76, 60, 0.32);
}
.btn-primary:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(231, 76, 60, 0.42); }
.btn-blue {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; box-shadow: 0 6px 20px rgba(0, 136, 204, 0.30);
}
.btn-blue:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0, 136, 204, 0.42); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #4a3c00; box-shadow: var(--shadow-gold);
}
.btn-gold:hover { color: #4a3c00; transform: translateY(-3px); }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.btn-lg { padding: 17px 40px; font-size: 1.08rem; }
.btn-block { width: 100%; }
.btn-wa svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 251, 254, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-weight: 500; font-size: 0.96rem; color: var(--text-primary);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--primary); transition: width var(--trans);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.92rem; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.nav-toggle span { width: 26px; height: 2.6px; background: var(--text-primary); border-radius: 2px; transition: var(--trans); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: #eaf1f6; position: relative; overflow: hidden;
  padding: 84px 0 92px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0 1px, transparent 1px 22px),
                    repeating-linear-gradient(-45deg, var(--gold) 0 1px, transparent 1px 22px);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(241, 196, 15, 0.14); color: var(--gold);
  border: 1px solid rgba(241, 196, 15, 0.4);
  padding: 7px 16px; border-radius: 18px 18px 5px 5px;
  font-weight: 600; font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.1rem); color: #fff; margin-bottom: 20px; line-height: 1.1; }
.hero h1 .gold-text { color: var(--gold); }
.hero p.lead { font-size: 1.16rem; color: #c3d0dc; margin-bottom: 30px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; }
.hero-trust .t { display: flex; flex-direction: column; }
.hero-trust .t b { font-family: 'DM Serif Display', serif; font-size: 1.7rem; color: var(--gold); }
.hero-trust .t span { font-size: 0.82rem; color: #9fb0c0; }

/* Arch-framed hero image */
.hero-figure { position: relative; }
.arch-frame {
  position: relative; padding: 12px;
  background: linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
  border: 1.5px solid rgba(241, 196, 15, 0.35);
  border-radius: 130px 130px 18px 18px;
  box-shadow: var(--shadow-lg);
}
.arch-frame img { border-radius: 120px 120px 10px 10px; width: 100%; }
.floating-777 {
  position: absolute; top: -22px; right: -18px; z-index: 3;
  width: 92px; height: 92px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 1.9rem; color: #4a3c00;
  box-shadow: var(--shadow-gold); border: 3px solid #fff8dc;
  animation: floaty 3.4s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

/* ---------- Cards / Games gallery ---------- */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--arch); box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  overflow: hidden;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }

.games-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.game-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 90px 90px 14px 14px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--trans);
  padding: 10px 10px 22px;
}
.game-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(0,136,204,0.35); }
.game-card .img-wrap {
  border-radius: 80px 80px 10px 10px; overflow: hidden; margin-bottom: 16px;
  border: 1px solid var(--border);
}
.game-card .img-wrap img { width: 100%; transition: transform 0.5s ease; }
.game-card:hover .img-wrap img { transform: scale(1.04); }
.game-card h3 { font-size: 1.35rem; padding: 0 18px; margin-bottom: 7px; }
.game-card p { padding: 0 18px; color: var(--text-secondary); font-size: 0.96rem; }
.game-card .tag {
  display: inline-block; margin: 0 18px 10px; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--primary);
  background: rgba(0,136,204,0.08); padding: 4px 12px; border-radius: 12px 12px 4px 4px;
}

/* ---------- Feature flow (3 col with dot separators) ---------- */
.features-flow {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  position: relative;
}
.feature-item { text-align: center; padding: 22px 26px; position: relative; }
.feature-item:not(:last-child)::after {
  content: "•••"; position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  color: var(--gold); letter-spacing: 3px; font-size: 1rem;
}
.feature-icon {
  width: 74px; height: 74px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, rgba(0,136,204,0.10), rgba(0,136,204,0.03));
  border: 1.5px solid rgba(0,136,204,0.25);
  border-radius: 50% 50% 14px 14px; font-size: 2rem;
}
.feature-item h3 { font-size: 1.32rem; margin-bottom: 10px; }
.feature-item p { color: var(--text-secondary); font-size: 0.98rem; }

/* ---------- Stats panel (gold numbers on dark) ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat-panel {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid rgba(241,196,15,0.22);
  border-radius: 20px 20px 10px 10px; padding: 30px 20px; text-align: center;
}
.stat-panel .num { font-family: 'DM Serif Display', serif; font-size: 2.7rem; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-panel .label { color: #b8c6d3; font-size: 0.94rem; letter-spacing: 0.4px; }

/* ---------- Trust badges (shield shape) ---------- */
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
.shield-badge {
  width: 150px; text-align: center; padding: 26px 16px 30px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px 16px 50% 50% / 16px 16px 40px 40px;
  box-shadow: var(--shadow-sm); transition: all var(--trans);
}
.shield-badge:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.shield-badge .ico { font-size: 2.1rem; margin-bottom: 12px; }
.shield-badge h4 { font-size: 1.05rem; margin-bottom: 5px; }
.shield-badge p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.4; }

/* ---------- Content / prose ---------- */
.prose { max-width: 860px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 40px 0 16px; }
.prose h3 { font-size: 1.42rem; margin: 30px 0 12px; color: var(--primary-dark); }
.prose p { margin-bottom: 16px; color: #3c4a5a; }
.prose ul.bullets { margin: 0 0 20px; padding-left: 4px; }
.prose ul.bullets li {
  position: relative; padding-left: 30px; margin-bottom: 11px; color: #3c4a5a;
}
.prose ul.bullets li::before {
  content: "◆"; position: absolute; left: 4px; top: 1px; color: var(--gold-dark); font-size: 0.8rem;
}
.prose strong { color: var(--text-primary); }
.lead-para { font-size: 1.12rem; color: var(--text-secondary); margin-bottom: 22px; }

/* Info callout */
.callout {
  background: linear-gradient(135deg, rgba(0,136,204,0.06), rgba(241,196,15,0.05));
  border-left: 4px solid var(--gold);
  border-radius: 4px 14px 14px 4px; padding: 20px 24px; margin: 26px 0;
}
.callout h4 { margin-bottom: 6px; color: var(--primary-dark); }
.callout.warn { border-left-color: var(--accent); background: linear-gradient(135deg, rgba(231,76,60,0.06), rgba(231,76,60,0.02)); }

/* ---------- Page banner (interior pages) ---------- */
.page-banner {
  background: linear-gradient(160deg, var(--bg-dark), var(--bg-dark-2));
  color: #fff; padding: 62px 0 66px; text-align: center; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ""; position: absolute; inset: 0; opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0 1px, transparent 1px 24px);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { font-size: clamp(2.2rem, 4.5vw, 3.3rem); color: #fff; margin-bottom: 12px; }
.page-banner h1 .gold-text { color: var(--gold); }
.page-banner p { color: #c3d0dc; font-size: 1.08rem; max-width: 640px; margin: 0 auto; }
.breadcrumb { margin-top: 18px; font-size: 0.88rem; color: #9fb0c0; }
.breadcrumb a { color: var(--gold); }

/* ---------- Tools ---------- */
.tool-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 26px 26px 14px 14px; box-shadow: var(--shadow-md);
  padding: 34px; max-width: 760px; margin: 0 auto;
}
.tool-card .tool-head { text-align: center; margin-bottom: 26px; }
.tool-card .tool-head .badge {
  display: inline-block; font-size: 0.74rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold-dark); background: rgba(241,196,15,0.12);
  padding: 5px 14px; border-radius: 14px 14px 4px 4px; margin-bottom: 12px;
}
.tool-card h3 { font-size: 1.7rem; margin-bottom: 8px; }
.tool-card .tool-head p { color: var(--text-secondary); }

.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 7px; color: var(--text-primary); }
.field input, .field select {
  width: 100%; padding: 13px 15px; font-family: 'Jost', sans-serif; font-size: 1rem;
  border: 1.5px solid var(--border); border-radius: 10px; background: var(--bg-body);
  color: var(--text-primary); transition: border-color var(--trans);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,136,204,0.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Luck tier pills */
.tier-pills { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.tier-pills label {
  display: block; text-align: center; padding: 12px 6px; cursor: pointer;
  border: 1.5px solid var(--border); border-radius: 12px 12px 5px 5px;
  font-weight: 600; font-size: 0.88rem; transition: all var(--trans); background: var(--bg-body);
}
.tier-pills input { display: none; }
.tier-pills input:checked + label { border-color: var(--gold); background: rgba(241,196,15,0.10); color: var(--gold-dark); box-shadow: var(--shadow-gold); }
.tier-pills label small { display: block; color: var(--text-secondary); font-weight: 500; font-size: 0.74rem; }

.tool-result {
  margin-top: 24px; padding: 24px; border-radius: 16px 16px 8px 8px;
  background: linear-gradient(160deg, var(--bg-dark), var(--bg-dark-2)); color: #fff;
  display: none;
}
.tool-result.show { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.tool-result .res-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,0.15); }
.tool-result .res-row:last-child { border-bottom: none; }
.tool-result .res-row .k { color: #b8c6d3; }
.tool-result .res-row .v { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--gold); }
.tool-result .big-v { font-size: 2.1rem !important; }
.tool-note { font-size: 0.86rem; color: #9fb0c0; margin-top: 14px; line-height: 1.5; }

/* Slot reel tool */
.slot-machine {
  display: flex; justify-content: center; gap: 14px; margin: 8px auto 24px;
  padding: 22px; background: linear-gradient(160deg, var(--bg-dark), var(--bg-dark-2));
  border-radius: 18px 18px 10px 10px; border: 3px solid var(--gold); box-shadow: var(--shadow-gold);
}
.reel {
  width: 92px; height: 108px; background: #fff; border-radius: 12px; overflow: hidden;
  position: relative; box-shadow: inset 0 0 14px rgba(0,0,0,0.25);
}
.reel-strip { position: absolute; top: 0; left: 0; width: 100%; transition: none; }
.reel-item {
  height: 108px; display: flex; align-items: center; justify-content: center;
  font-size: 3.2rem; user-select: none;
}
.slot-status { text-align: center; font-weight: 600; min-height: 26px; margin-bottom: 6px; }
.slot-status.win { color: var(--gold-dark); font-size: 1.15rem; }
.slot-status.lose { color: var(--text-secondary); }

/* VIP tiers */
.vip-ladder { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin: 22px 0; }
.vip-step {
  text-align: center; padding: 12px 4px; border-radius: 10px 10px 4px 4px;
  border: 1.5px solid var(--border); font-size: 0.8rem; font-weight: 600; opacity: 0.5;
  transition: all var(--trans);
}
.vip-step.active { opacity: 1; border-color: var(--gold); background: rgba(241,196,15,0.10); color: var(--gold-dark); box-shadow: var(--shadow-gold); }
.vip-step .lvl-ico { display: block; font-size: 1.5rem; margin-bottom: 4px; }
.progress-track { height: 12px; background: var(--border); border-radius: 8px; overflow: hidden; margin: 6px 0 4px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); border-radius: 8px; transition: width 0.6s ease; width: 0; }

/* Benefits list in result */
.benefit-list { margin-top: 12px; }
.benefit-list li { padding: 5px 0 5px 26px; position: relative; color: #dbe4ec; font-size: 0.94rem; }
.benefit-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px 14px 6px 6px;
  margin-bottom: 14px; overflow: hidden; transition: box-shadow var(--trans);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 24px; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 1.06rem;
  color: var(--text-primary); display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-q .icon { color: var(--primary); font-size: 1.4rem; transition: transform var(--trans); flex-shrink: 0; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 24px 20px; color: var(--text-secondary); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; text-align: center; border-radius: 30px 30px 16px 16px;
  padding: 52px 30px; position: relative; overflow: hidden;
}
.cta-band::before {
  content: "777"; position: absolute; right: 24px; bottom: -18px; font-family: 'DM Serif Display', serif;
  font-size: 8rem; color: rgba(255,255,255,0.08); line-height: 1;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
.cta-band p { color: #dceefb; font-size: 1.1rem; max-width: 560px; margin: 0 auto 26px; position: relative; z-index: 2; }
.cta-band .btn-gold { position: relative; z-index: 2; }

/* ---------- Steps (login/signup) ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--arch);
  padding: 30px 26px; position: relative; box-shadow: var(--shadow-sm); transition: all var(--trans);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  width: 48px; height: 48px; border-radius: 50% 50% 12px 12px;
  background: linear-gradient(160deg, var(--primary), var(--primary-dark)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
.step-card h3 { font-size: 1.3rem; margin-bottom: 9px; }
.step-card p { color: var(--text-secondary); font-size: 0.97rem; }

/* ---------- Two-column info ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.two-col.reverse .col-img { order: 2; }
.col-img .arch-frame { border-radius: 100px 100px 14px 14px; }
.col-img .arch-frame img { border-radius: 90px 90px 8px 8px; }

/* APK spec table */
.spec-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 14px 20px; }
.spec-table td:first-child { font-weight: 600; color: var(--text-primary); width: 42%; background: var(--bg-section); }
.spec-table td:last-child { color: var(--text-secondary); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--arch);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: flex-start;
  transition: all var(--trans);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-card .ci {
  width: 54px; height: 54px; flex-shrink: 0; border-radius: 50% 50% 12px 12px;
  background: linear-gradient(160deg, rgba(0,136,204,0.12), rgba(0,136,204,0.04));
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  border: 1.5px solid rgba(0,136,204,0.22);
}
.contact-card h4 { font-size: 1.15rem; margin-bottom: 5px; }
.contact-card p, .contact-card a { color: var(--text-secondary); font-size: 0.96rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #b8c6d3; padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { font-size: 0.94rem; line-height: 1.7; color: #98a8b8; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; font-family: 'Jost', sans-serif; font-weight: 600; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #98a8b8; font-size: 0.93rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-wa { margin-top: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-size: 0.86rem; color: #7d8ea0;
}
.age-badge {
  display: inline-flex; align-items: center; gap: 7px; background: rgba(231,76,60,0.15);
  color: #ff8a7a; border: 1px solid rgba(231,76,60,0.35); padding: 5px 13px; border-radius: 20px;
  font-weight: 600; font-size: 0.82rem;
}
.footer-disclaimer { font-size: 0.82rem; color: #6d7e90; line-height: 1.6; margin-top: 16px; text-align: center; }

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5); transition: transform var(--trans);
  animation: pulse-wa 2.4s infinite;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 32px; height: 32px; fill: #fff; }
@keyframes pulse-wa { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hide-mobile { display: initial; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { max-width: 460px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .two-col.reverse .col-img { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-flow { grid-template-columns: 1fr; }
  .feature-item:not(:last-child)::after { content: none; }
  .contact-grid, .grid-3, .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  section { padding: 54px 0; }
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
    background: var(--bg-body); padding: 20px 22px; gap: 16px; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); align-items: flex-start;
  }
  .games-grid, .grid-2, .field-row { grid-template-columns: 1fr; }
  .tier-pills { grid-template-columns: repeat(2, 1fr); }
  .vip-ladder { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .vip-step { font-size: 0.62rem; padding: 8px 2px; }
  .vip-step .lvl-ico { font-size: 1.1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .tool-card { padding: 22px 18px; }
  .slot-machine { gap: 8px; padding: 16px; }
  .reel { width: 76px; height: 92px; }
  .reel-item { height: 92px; font-size: 2.6rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 20px; }
}
