/* =========================================================
   Social Casino — style.css
   - Matches your screenshots: dark UI + neon green glow
   - Font weights kept NORMAL (no extra-bold look)
   - Uses Inter 400/500/600/700 only
   ========================================================= */

/* ---------- Reset / Base ---------- */
:root {
  --bg0: #07080c;
  --bg1: #0b0d12;

  --card: #0f131a;
  --card2: #0b0f15;

  --text: #eef2ff;
  --muted: rgba(238, 242, 255, .70);

  --line: rgba(255, 255, 255, .16);
  --lineSoft: rgba(255, 255, 255, .10);

  --green: #19ff86;
  --green2: #0fe07a;

  --shadow: 0 18px 55px rgba(0, 0, 0, .55);
  --radius: 22px;

  --max: 1200px;
  --pad: 24px;

  --navH: 76px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 400;
  /* ✅ keep base light */
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 50% 20%, rgba(255, 255, 255, .06), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 14px;
  line-height: 1.65;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -.02em;
  color: var(--text);
}

h1 {
  font-weight: 700;
}

/* ✅ not 900 */
h2 {
  font-weight: 700;
}

h3 {
  font-weight: 600;
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

/* ---------- Helpers ---------- */
.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
}

.center {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  /* ✅ buttons semi-bold only */
  letter-spacing: .01em;
  padding: 12px 18px;
  border-radius: 999px;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease, background .15s ease;
  user-select: none;
  white-space: nowrap;
}

.btn--primary {
  color: #06130b;
  background: linear-gradient(180deg, var(--green), var(--green2));
  box-shadow:
    0 12px 35px rgba(25, 255, 134, .18),
    0 0 0 1px rgba(25, 255, 134, .22),
    0 0 28px rgba(25, 255, 134, .20);
}

.btn--primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  color: rgba(238, 242, 255, .88);
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

.btn--ghost:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.btn--ghost:active {
  transform: translateY(0);
}

.btn--lg {
  padding: 14px 22px;
  font-size: 16px;
}

.btn--wide {
  width: 100%;
  padding: 14px 18px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--navH);
  display: flex;
  align-items: center;
  background: rgba(10, 12, 18, .65);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 30px;
}

.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  /* ✅ not too bold */
  letter-spacing: -.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--navH));
  display: flex;
  align-items: center;
  padding: 46px 0 64px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 20% 35%, rgba(255, 255, 255, .10), transparent 55%),
    radial-gradient(900px 600px at 75% 50%, rgba(25, 255, 134, .12), transparent 55%),
    linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .35) 45%, rgba(0, 0, 0, .20) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: .12em;
  font-weight: 600;
  color: rgba(25, 255, 134, .95);
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(44px, 6vw, 82px);
  line-height: .95;
  font-weight: 700;
  /* ✅ not extra bold */
}

.hero__desc {
  margin-top: 18px;
  font-size: 18px;
  color: rgba(238, 242, 255, .72);
  max-width: 520px;
}

.hero__actions {
  margin-top: 24px;
}

.hero__socialproof {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stars {
  display: inline-flex;
  gap: 5px;
  color: rgba(25, 255, 134, .95);
  font-size: 16px;
  transform: translateY(-1px);
}

.star {
  text-shadow: 0 0 12px rgba(25, 255, 134, .22);
}

.hero__note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(238, 242, 255, .55);
}

.hero__media {
  background: rgba(10, 14, 20, .70);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 18px;
  max-width: 560px;
  margin-left: auto;
}

.hero__media img {
  border-radius: 18px;
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Sections ---------- */
.section {
  padding: 84px 0;
}

.section__head {
  margin-bottom: 34px;
}

.section__head.center {
  text-align: center;
}

.section__title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
}

.section__subtitle {
  margin-top: 10px;
  font-size: 18px;
  color: rgba(238, 242, 255, .65);
}

/* ---------- Featured Game ---------- */
.featured {
  background:
    radial-gradient(1000px 520px at 50% 35%, rgba(255, 255, 255, .06), transparent 60%);
}

.featured__wrap {
  display: flex;
  justify-content: center;
}

.game-card {
  width: min(520px, 100%);
  background: rgba(14, 18, 26, .66);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.game-card__media {
  padding: 18px 18px 0;
}

.game-card__media img {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
}

.game-card__body {
  padding: 22px 22px 24px;
}

.game-card__title {
  font-size: 34px;
  font-weight: 700;
  margin-top: 10px;
}

.game-card__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 18px;
  display: grid;
  gap: 10px;
  color: rgba(238, 242, 255, .78);
  font-weight: 500;
}

.game-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.game-card__list .ico {
  width: 22px;
  display: inline-flex;
  justify-content: center;
  color: rgba(25, 255, 134, .95);
  text-shadow: 0 0 18px rgba(25, 255, 134, .18);
}

/* ---------- 6 Cards Grid ---------- */
.grid6 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: rgba(12, 16, 22, .66);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  padding: 22px 22px 20px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .40);
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 255, 134, .10);
  border: 1px solid rgba(25, 255, 134, .18);
  color: rgba(25, 255, 134, .95);
  box-shadow: 0 0 26px rgba(25, 255, 134, .12);
  margin-bottom: 14px;
  font-size: 18px;
}

.card__title {
  font-size: 20px;
  font-weight: 600;
  /* ✅ keep not too heavy */
  margin-bottom: 8px;
}

.card__text {
  color: rgba(238, 242, 255, .62);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Blog / Panels ---------- */
.blog {
  background:
    radial-gradient(900px 520px at 20% 40%, rgba(25, 255, 134, .08), transparent 60%),
    radial-gradient(900px 520px at 80% 50%, rgba(255, 255, 255, .06), transparent 62%);
}

.blog__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
}

.panel {
  background: rgba(12, 16, 22, .66);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.panel--big {
  padding: 30px;
}

.panel__title {
  font-size: 40px;
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 12px;
}

.panel__smalltitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.badge,
.shield {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 255, 134, .10);
  border: 1px solid rgba(25, 255, 134, .18);
  color: rgba(25, 255, 134, .95);
  box-shadow: 0 0 22px rgba(25, 255, 134, .14);
  font-size: 14px;
}

.panel__text {
  color: rgba(238, 242, 255, .66);
  font-size: 15px;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(238, 242, 255, .72);
  font-weight: 500;
}

.checklist li {
  position: relative;
  padding-left: 22px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(25, 255, 134, .95);
  text-shadow: 0 0 16px rgba(25, 255, 134, .16);
}

/* ---------- Signup section ---------- */
.signup .btn {
  margin-top: 12px;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 58px 0 74px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(6, 7, 10, .75);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  text-align: center;
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(238, 242, 255, .66);
  font-weight: 500;
}

.footer__links a {
  color: rgba(238, 242, 255, .64);
}

.footer__links a:hover {
  color: rgba(238, 242, 255, .86);
}

.footer__headline {
  font-weight: 700;
  /* ✅ headline only */
  letter-spacing: .06em;
  color: rgba(25, 255, 134, .95);
  margin-bottom: 10px;
}

.footer__text {
  color: rgba(238, 242, 255, .60);
  font-size: 14px;
  margin: 6px 0;
}

.footer__copy {
  margin-top: 10px;
  color: rgba(238, 242, 255, .42);
  font-size: 13px;
}

/* ---------- Cookie Bar ---------- */
.cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 14px 0;
  background: rgba(14, 16, 20, .82);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.cookiebar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookiebar__text {
  margin: 0;
  font-size: 14px;
  color: rgba(238, 242, 255, .66);
  line-height: 1.45;
}

.cookiebar__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookiebar.is-hidden {
  display: none !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__media {
    margin-left: 0;
    max-width: 680px;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  .grid6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section__title {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  :root {
    --navH: 70px;
  }

  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .hero {
    padding: 34px 0 52px;
    min-height: auto;
  }

  .hero__title {
    font-size: 44px;
    line-height: 1.0;
  }

  .hero__desc {
    font-size: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .section__title {
    font-size: 34px;
  }

  .grid6 {
    grid-template-columns: 1fr;
  }

  .cookiebar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookiebar__actions {
    width: 100%;
    justify-content: flex-end;
  }

  .brand {
    font-size: 20px;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--navH);
    display: flex;
    align-items: center;
    background: rgba(10, 12, 18, .65);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 0px;
  }
}