/* Tablić M — advertising site redesign ("Claude Design" dark neon theme). */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #07070d;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: #f2f2f7;
  font-family: 'Manrope', sans-serif;
  position: relative;
  overflow-x: hidden;
}

a { color: #ff5fa0; text-decoration: none; }
a:hover { color: #ffffff; }

input::placeholder, textarea::placeholder { color: #5c5c70; }

.hero-glow {
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1000px, 100%);
  height: 540px;
  background: radial-gradient(ellipse at center, rgba(214,36,110,.24), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.shell {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 28px clamp(16px, 3vw, 32px) 0;
}

/* ---------- Header ---------- */

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f2f2f7;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .08em;
}

.logo:hover { color: #fff; }

.logo-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 7px 14px rgba(214,36,110,.32));
}

.logo-wordmark { white-space: nowrap; }

.logo-suffix { color: #ff5fa0; }

.topnav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 13px;
  font-weight: 700;
  color: #b9b9c9;
}

.lang-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  font-weight: 800;
}

.lang-btn {
  padding: 6px 14px;
  border-radius: 999px;
  color: #8b8b9e;
}

.lang-btn.active {
  background: #d6246e;
  color: #fff;
}

/* ---------- Buttons ---------- */

.btn-primary, .btn-ghost {
  display: inline-block;
  text-align: center;
  border-radius: 999px;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
  transition: transform .15s, border-color .15s;
}

.btn-primary {
  padding: 14px;
  border: none;
  background: linear-gradient(135deg, #d6246e, #ff5fa0);
  color: #fff;
  font-size: 15px;
  box-shadow: 0 0 32px rgba(214,36,110,.45);
}

.btn-primary:hover { transform: translateY(-2px); color: #fff; }

.btn-ghost {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: #f2f2f7;
  font-size: 15px;
}

.btn-ghost:hover { border-color: rgba(255,255,255,.4); color: #fff; }

.btn-lg { padding: 16px 44px; font-size: 17px; }

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr);
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
  padding: 74px 0 100px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(214,36,110,.12);
  border: 1px solid rgba(214,36,110,.4);
  font-family: 'Chakra Petch', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #ff5fa0;
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 700;
  line-height: 1.01;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.accent { color: #ff5fa0; }

.hero-sub {
  margin: 0;
  max-width: 610px;
  font-size: 18px;
  line-height: 1.6;
  color: #b9b9c9;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 620px;
  margin-top: 4px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.stat-card {
  min-width: 0;
  padding: 0 18px;
}

.stat-card:first-child { padding-left: 0; }

.stat-card + .stat-card {
  border-left: 1px solid rgba(255,255,255,.1);
}

.stat-value {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #ff5fa0;
}

.stat-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #8b8b9e;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-width: 0;
  padding: 28px 16px 42px;
  justify-self: end;
}

.game-preview {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  background: #111322;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 80px rgba(0,0,0,.58), 0 0 55px rgba(76,98,255,.18);
  transform: rotate(1.8deg);
}

.game-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7,7,13,.2), transparent 35%, rgba(7,7,13,.28)),
    radial-gradient(circle at 50% 55%, transparent 25%, rgba(7,7,13,.2) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.game-preview > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
}

.game-preview-brand {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 8px;
  border-radius: 12px;
  background: rgba(7,7,13,.78);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  font-family: 'Chakra Petch', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.game-preview-brand img { width: 30px; height: 30px; }

.game-preview-ad {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  padding: 12px 18px;
  border-radius: 9px;
  color: #ffd35a;
  background: rgba(7,7,13,.82);
  border: 1px dashed rgba(255,211,90,.85);
  font-family: 'Chakra Petch', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transform: translate(-50%, -50%);
}

.hero-float {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(20,21,37,.94);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 18px 42px rgba(0,0,0,.48);
  backdrop-filter: blur(14px);
}

.hero-float strong {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 15px;
  color: #fff;
  letter-spacing: .04em;
}

.hero-float span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #8b8b9e;
}

.hero-float-a { top: 0; right: 0; }
.hero-float-b { left: 0; bottom: 0; }

/* ---------- Sections ---------- */

.section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 100px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.kicker {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #ff5fa0;
}

.section-head h2, .spons-head h2 {
  margin: 0;
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.section-sub {
  margin: 0 auto;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  color: #b9b9c9;
}

.section-sub.left { margin: 0; max-width: none; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.place-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.glass-card {
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
}

/* ---------- Why cards ---------- */

.why-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-icon { font-size: 30px; }

.why-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.why-desc { font-size: 15px; line-height: 1.6; color: #b9b9c9; }

/* ---------- Placements ---------- */

.place-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.place-card:hover { color: inherit; border-color: rgba(214,36,110,.4); }

.place-card img {
  width: 100%;
  aspect-ratio: 600/620;
  object-fit: cover;
  display: block;
}

.place-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 20px;
}

.place-label {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.pill-tag {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(214,36,110,.12);
  border: 1px solid rgba(214,36,110,.4);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #ff5fa0;
  white-space: nowrap;
}

/* ---------- Plans ---------- */

.plan-card {
  position: relative;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-featured {
  border: 1px solid rgba(214,36,110,.55);
  box-shadow: 0 0 40px rgba(214,36,110,.22);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d6246e, #ff5fa0);
  font-family: 'Chakra Petch', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #fff;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #8b8b9e;
}

.plan-price-row { display: flex; align-items: baseline; gap: 8px; }

.plan-price {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: #ff5fa0;
}

.plan-per { font-size: 14px; font-weight: 600; color: #8b8b9e; }

.plan-tagline { font-size: 14px; font-weight: 600; color: #b9b9c9; }

.plan-sep { height: 1px; background: rgba(255,255,255,.09); }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.plan-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: #d8d8e4;
}

.plan-feature .check { color: #ff5fa0; font-weight: 800; }

.plan-cta { margin-top: 8px; letter-spacing: .08em; }

/* ---------- Sponsorship ---------- */

.spons-panel {
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(214,36,110,.14), rgba(109,40,217,.1));
  border: 1px solid rgba(214,36,110,.3);
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
  overflow: hidden;
}

.spons-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}

.spons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.spons-item {
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(7,7,13,.5);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spons-item-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ff5fa0;
}

.spons-item-desc { font-size: 14px; line-height: 1.55; color: #b9b9c9; }

.spons-cta { align-self: flex-start; padding: 15px 40px; font-size: 16px; }

/* ---------- FAQ ---------- */

.faq-section { max-width: 780px; margin: 0 auto; width: 100%; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item { border-radius: 18px; overflow: hidden; }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
  text-align: left;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.faq-q .chev {
  color: #ff5fa0;
  font-size: 18px;
  transition: transform .2s;
}

.faq-item.open .faq-q .chev { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: #b9b9c9;
}

.faq-item.open .faq-a { display: block; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px;
  align-items: start;
}

.office-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.office-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.office-addr { font-size: 15px; line-height: 1.7; color: #b9b9c9; }

.office-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}

.office-hours { font-size: 14px; color: #8b8b9e; }

.form-card { padding: 32px; }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* The author-level grid display overrides the browser's default [hidden]
   rule in some engines. Keep the submitted form out of view after HTTP 200. */
.contact-form[hidden] { display: none; }

.span-2 { grid-column: 1 / -1; }

.field {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(7,7,13,.6);
  color: #f2f2f7;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  width: 100%;
}

select.field { padding: 14px; }

textarea.field { resize: vertical; }

.field:focus {
  outline: none;
  border-color: rgba(214,36,110,.6);
}

/* Honeypot — visually gone, still in the DOM for bots to fill. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-submit {
  padding: 16px;
  font-size: 16px;
}

.form-submit[disabled] { opacity: .6; cursor: default; transform: none; }

.form-error {
  font-size: 14px;
  color: #ff7a7a;
  line-height: 1.5;
}

.form-sent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 0;
  text-align: center;
}

.form-sent[hidden] { display: none; }

.form-sent-emoji { font-size: 40px; }

.form-sent-msg {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

/* ---------- Lightbox ---------- */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(7,7,13,.88);
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}

.lightbox-overlay.open { display: flex; }

body.lightbox-lock { overflow: hidden; }

.lightbox-box {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  max-width: min(720px, 94vw);
  max-height: 92vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(92vh - 60px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 0 60px rgba(214,36,110,.3);
  display: block;
}

.lightbox-caption {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #f2f2f7;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(7,7,13,.85);
  color: #f2f2f7;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.lightbox-close:hover { border-color: rgba(214,36,110,.6); color: #ff5fa0; }

/* ---------- Footer ---------- */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: #8b8b9e;
}

.footer-links { display: flex; gap: 20px; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 60px 0 80px;
  }
  .hero-copy { max-width: 720px; }
  .hero-visual { max-width: 640px; justify-self: center; }
  .section { padding-bottom: 70px; }
}

@media (max-width: 520px) {
  .contact-form { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .topbar { flex-wrap: nowrap; }
  .logo { gap: 7px; font-size: 15px; }
  .logo-mark { width: 38px; height: 38px; }
  .logo-suffix { display: none; }
  .topnav { gap: 8px; margin-left: auto; }
  .nav-link { display: none; }
  .lang-btn { padding: 6px 10px; }
  .hero { padding-top: 48px; }
  .hero-copy { gap: 22px; }
  .hero-badge { padding: 7px 12px; font-size: 10px; letter-spacing: .09em; }
  .hero h1 { font-size: clamp(36px, 12vw, 48px); }
  .hero-sub { font-size: 16px; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn-lg { flex: 1; min-width: 145px; padding: 14px 16px; font-size: 14px; }
  .stats { padding-top: 18px; }
  .stat-card { padding: 0 10px; }
  .stat-value { font-size: 23px; }
  .stat-label { font-size: 9px; letter-spacing: .08em; }
  .hero-visual { padding: 24px 5px 46px; }
  .game-preview { aspect-ratio: 1.08 / 1; border-radius: 22px; }
  .game-preview-brand { top: 13px; left: 13px; padding: 5px 9px 5px 6px; font-size: 10px; }
  .game-preview-brand img { width: 25px; height: 25px; }
  .game-preview-ad { padding: 9px 12px; font-size: 9px; }
  .hero-float { padding: 10px 12px; }
  .hero-float strong { font-size: 12px; }
  .hero-float span { font-size: 8px; }
}
