/* ==========================================================
   IS7 Games — is7games.app
   Single stylesheet for all pages
   ========================================================== */

:root {
  --bg: #0b1020;
  --bg-soft: #121a33;
  --card: #16203d;
  --line: rgba(255, 255, 255, 0.09);
  --text: #eef2ff;
  --muted: #a3adcc;
  --brand: #ffb703;
  --brand-2: #ff5c39;
  --accent: #2de3a7;
  --radius: 16px;
  --wrap: 1140px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

.is7-page {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.is7-page img { max-width: 100%; display: block; }
.is7-page a { color: #fff; text-decoration: none!important; }


.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--alt { background: var(--bg-soft); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  border: 1px solid rgba(255, 183, 3, 0.35);
  background: rgba(255, 183, 3, 0.08);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}

h1, h2, h3 { line-height: 1.25; margin: 0 0 14px; }
h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 19px; }
p { margin: 0 0 16px; color: var(--muted); }
p strong, li strong { color: var(--text); }


.lead { font-size: 18px; max-width: 720px; }
.section > .wrap > p.lead { margin-bottom: 26px; }

/* ---------- Buttons ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 18px; }
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn small { font-weight: 600; font-size: 12px; opacity: 0.85; }
.btn--primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #1a1205; box-shadow: 0 10px 26px rgba(255, 92, 57, 0.28); }
.btn--secondary { background: rgba(45, 227, 167, 0.14); color: var(--accent); border-color: rgba(45, 227, 167, 0.4); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--link { display: inline-block; font-weight: 700; color: var(--accent); }

/* ---------- Top strip / nav ---------- */
.topbar {
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
  color: #1a1205;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 9px 16px;
}
.nav {
  border-bottom: 1px solid var(--line);
  background: rgba(11, 16, 32, 0.92);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; flex-wrap: wrap; }
.brand { font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: 0.02em; }
.brand span { color: var(--brand); }
.nav-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 600; }
.nav-links a:hover, .nav-links a.is-active { color: var(--text); text-decoration: none; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 72px; background: radial-gradient(1000px 480px at 15% -10%, rgba(255, 183, 3, 0.16), transparent 60%), var(--bg); }
.hero .wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: center; }
.hero p.lead { color: #c8d1ee; }
.bonus-line {
  margin: 18px 0 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(45, 227, 167, 0.1);
  border: 1px dashed rgba(45, 227, 167, 0.45);
  color: var(--accent);
  font-weight: 700;
}
.ticks { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 0; }
.ticks li { color: var(--muted); font-size: 14.5px; font-weight: 600; }
.ticks li::before { content: "\2713"; color: var(--accent); margin-right: 8px; font-weight: 800; }
.hero-shot {
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--card);
}
.hero-shot img { width: 100%; height: auto; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover { border-color: rgba(255, 183, 3, 0.45); transform: translateY(-3px); }
.card .ico { font-size: 24px; margin-bottom: 10px; }
.card p { margin: 0; font-size: 15px; }

/* ---------- Spec / stats ---------- */
.spec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.spec div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.spec dt, .spec .k { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.spec .v { font-size: 17px; font-weight: 800; color: var(--text); }

/* ---------- Table ---------- */
.table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.table tr { border-bottom: 1px solid var(--line); }
.table tr:last-child { border-bottom: 0; }
.table tr:nth-child(odd) { background: rgba(255, 255, 255, 0.02); }
.table th, .table td { text-align: left; padding: 14px 18px; font-size: 15px; }
.table th { width: 40%; color: var(--muted); font-weight: 600; }
.table td { color: var(--text); font-weight: 700; }

/* ---------- Lists ---------- */
.bullets { padding-left: 20px; margin: 0; }
.bullets li { color: var(--muted); margin-bottom: 12px; font-size: 15.5px; }

/* ---------- Shots ---------- */
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.shots img { border-radius: 14px; border: 1px solid var(--line); box-shadow: var(--shadow); width: 100%; }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 22px 20px; margin: 0; font-size: 15px; }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.16), rgba(255, 92, 57, 0.14));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 66px 0;
}
.cta .btn-row { justify-content: center; }

/* ---------- Login form ---------- */
.login-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; }
.field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
}
.field input:focus { outline: 2px solid rgba(255, 183, 3, 0.5); outline-offset: 1px; }
.form-card .btn { width: 100%; margin-top: 6px; }
.steps { counter-reset: s; list-style: none; padding: 0; margin: 0; }
.steps li { counter-increment: s; position: relative; padding-left: 46px; margin-bottom: 18px; color: var(--muted); }
.steps li::before {
  content: counter(s);
  position: absolute; left: 0; top: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #1a1205; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Footer ---------- */
.footer { background: #070b17; border-top: 1px solid var(--line); padding: 46px 0 30px; }
.footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.footer h4 { margin: 0 0 12px; font-size: 15px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer a { color: var(--muted); font-size: 14.5px; }
.footer a:hover { color: var(--text); }
.footer .fine { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; color: #7f89a8; }

/* ---------- Sticky bottom bar ---------- */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: rgba(11, 16, 32, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
  padding: 10px 0;
}
.stickybar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.stickybar strong { display: block; font-size: 15px; }
.stickybar span { font-size: 13px; color: var(--muted); }
.stickybar .btn { padding: 11px 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .hero .wrap, .login-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-2, .shots, .footer .cols { grid-template-columns: 1fr 1fr; }
  .spec { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .grid-3, .grid-2, .shots, .footer .cols, .spec { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .nav .wrap { min-height: auto; padding-top: 12px; padding-bottom: 12px; }
  .stickybar .wrap { justify-content: center; text-align: center; }
  body.is7-page { padding-bottom: 96px; }
}
