/* Sportik theme — RTL Hebrew */

:root {
  --sk-red: #E10600;
  --sk-red-glow: rgba(225, 6, 0, .38);
  --sk-bg: #0c0c0e;
  --sk-bg-deep: #08080a;
  --sk-ink: #0e0e11;
  --sk-muted: #6b6b73;
  --sk-soft: #9a9aa3;
  --sk-line: #ecebe6;
  --sk-cream: #faf9f7;
  --sk-white: #fff;
  --sk-wa: #25D366;
  --sk-wa-ink: #06351a;
  --sk-radius: 14px;
  --sk-wrap: 1240px;
  --sk-header: 76px;
  --sk-font: "Assistant", -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.sportik {
  margin: 0;
  font-family: var(--sk-font);
  color: var(--sk-ink);
  background: var(--sk-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font-family: inherit; }

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.sk-skip {
  position: absolute; right: -999px; top: 0; z-index: 100;
  background: var(--sk-red); color: #fff; padding: 10px 16px;
}
.sk-skip:focus { right: 12px; }

.sk-wrap {
  max-width: var(--sk-wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.sk-main { min-height: 50vh; }

/* Typography */
.sk-h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.2px;
  margin: 0;
  color: var(--sk-ink);
}
.sk-h2--light { color: #fff; }
.sk-eyebrow {
  color: var(--sk-red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sk-accent { color: var(--sk-red); }
.sk-hint { color: var(--sk-soft); font-size: 14px; font-weight: 600; }
.sk-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

/* Buttons */
.sk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: var(--sk-radius);
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.sk-btn--sm { font-size: 14.5px; padding: 10px 17px; border-radius: 100px; }
.sk-btn--primary {
  background: var(--sk-red); color: #fff;
  box-shadow: 0 14px 36px var(--sk-red-glow);
}
.sk-btn--primary:hover { transform: translateY(-1px); }
.sk-btn--wa { background: var(--sk-wa); color: var(--sk-wa-ink); }
.sk-btn--ghost {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
}
.sk-btn--outline {
  color: #b9b9c0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  padding: 11px 22px;
  font-size: 15px;
  background: transparent;
}
.sk-btn--outline-dark {
  color: var(--sk-ink);
  border: 1px solid #e3e0d9;
  border-radius: 100px;
  padding: 11px 22px;
  font-size: 15px;
  background: transparent;
}
.sk-btn--dark {
  background: var(--sk-ink); color: #fff;
  border: 1.5px solid #e8e5de;
}
.sk-btn--block { width: 100%; }

.sk-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: #e7e7ea;
  border-radius: 100px;
  padding: 7px 16px;
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 26px;
}
.sk-pill__dot {
  width: 7px; height: 7px;
  background: var(--sk-red);
  border-radius: 50%;
  animation: sk-pulse 2s infinite;
}

@keyframes sk-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(225,6,0,.5); }
  50% { box-shadow: 0 0 0 8px rgba(225,6,0,0); }
}
@keyframes sk-marq { to { transform: translateX(-50%); } }
@keyframes sk-wordin {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes sk-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes sk-fadein {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* Header */
.sk-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.sk-header.is-scrolled {
  background: rgba(195, 5, 0, .96);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,.08);
}
.sk-header--solid {
  background: rgba(10,10,12,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.home .sk-header:not(.is-scrolled) { background: transparent; }
body:not(.home) .sk-header {
  background: rgba(10,10,12,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.sk-header__inner {
  max-width: var(--sk-wrap);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--sk-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sk-logo img {
  height: 38px; width: auto;
  filter: invert(1) hue-rotate(185deg) saturate(1.6);
}
.sk-nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}
.sk-nav__list a {
  color: #b9b9c0;
  text-decoration: none;
  font-weight: 600;
  font-size: 15.5px;
}
.sk-nav__list .current-menu-item > a,
.sk-nav__list a:hover { color: #f4f4f5; }
.sk-header__actions { display: flex; align-items: center; gap: 10px; }

.sk-nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.sk-nav-toggle span {
  display: block; height: 2px; width: 22px;
  background: #fff; border-radius: 2px;
}

@media (max-width: 900px) {
  .sk-nav-toggle { display: flex; }
  .sk-nav {
    position: fixed;
    top: var(--sk-header);
    left: 0; right: 0;
    background: rgba(10,10,12,.97);
    padding: 20px 24px 28px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .sk-nav.is-open {
    transform: none; opacity: 1; pointer-events: auto;
  }
  .sk-nav__list { flex-direction: column; align-items: flex-start; gap: 18px; }
  .sk-header__call { display: none; }
}

/* Hero */
.sk-hero {
  position: relative;
  background: var(--sk-bg) var(--sk-hero-bg) center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.sk-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,12,.72) 0%, rgba(10,10,12,.6) 40%, rgba(10,10,12,.88) 100%),
    radial-gradient(900px 500px at 78% 12%, rgba(225,6,0,.32), transparent 58%);
}
.sk-hero__spot {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px circle at 50% 30%, rgba(225,6,0,.14), transparent 70%);
}
.sk-hero__dots {
  position: absolute; inset: 0; opacity: .45; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.sk-hero__inner { position: relative; padding: 128px 24px 56px; }
.sk-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr;
  gap: 56px;
  align-items: center;
}
.sk-hero__title {
  font-weight: 800;
  font-size: clamp(40px, 6.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin: 0 0 20px;
}
.sk-hero__text {
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.6;
  color: #b9b9c0;
  max-width: 520px;
  margin: 0 0 20px;
}
.sk-hero__hot {
  display: flex; align-items: center; gap: 13px;
  color: #9a9aa3; font-size: 14.5px; font-weight: 600;
  margin-bottom: 32px;
}
.sk-hero__hot-label { color: var(--sk-red); }
.sk-hero__hot-sep { height: 14px; width: 1px; background: rgba(255,255,255,.16); }
.sk-hero__hot-word { color: #fff; font-weight: 700; animation: sk-wordin .5s ease both; }
.sk-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.sk-marquee {
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.sk-marquee__track {
  display: inline-flex;
  animation: sk-marq 32s linear infinite;
  padding: 20px 0;
  white-space: nowrap;
  font-weight: 700;
  font-size: clamp(17px, 2vw, 23px);
  color: rgba(255,255,255,.38);
}

@media (max-width: 940px) {
  .sk-hero__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Lead form */
.sk-lead {
  background: rgba(255,255,255,.97);
  border-radius: 24px;
  padding: clamp(22px, 2.6vw, 30px);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  color: var(--sk-ink);
}
.sk-lead h3 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 800;
}
.sk-lead__sub { margin: 0 0 18px; color: var(--sk-muted); font-size: 14.5px; }
.sk-lead__form { display: flex; flex-direction: column; gap: 11px; }
.sk-lead input,
.sk-lead select,
.sk-lead textarea {
  border: 1.5px solid #e8e5de;
  border-radius: 13px;
  padding: 14px 15px;
  font-size: 15px;
  background: var(--sk-cream);
  width: 100%;
  color: var(--sk-ink);
}
.sk-lead__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) {
  .sk-lead__row { grid-template-columns: 1fr; }
}
.sk-lead__success { text-align: center; padding: 26px 6px; }
.sk-lead__check {
  width: 60px; height: 60px; margin: 0 auto 16px;
  background: var(--sk-wa); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 30px;
}

/* Stats */
.sk-stats {
  background: var(--sk-bg);
  color: #fff;
  padding: 0 24px 84px;
}
.sk-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.08);
}
.sk-stats__item {
  padding: 44px 32px 0;
  border-left: 1px solid rgba(255,255,255,.07);
}
.sk-stats__item:first-child { padding-right: 0; }
.sk-stats__bar {
  height: 3px; width: 44px;
  background: var(--sk-red); border-radius: 2px; margin-bottom: 22px;
}
.sk-stats__num {
  font-size: clamp(64px, 9.5vw, 104px);
  font-weight: 800; line-height: 1; letter-spacing: -3px;
}
.sk-stats__label { margin-top: 10px; font-size: 15px; color: var(--sk-soft); font-weight: 600; }
@media (max-width: 960px) {
  .sk-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .sk-stats__grid { grid-template-columns: 1fr; }
  .sk-stats__item { border-left: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 32px 0; }
}

/* Why */
.sk-why {
  background: #fff;
  padding: clamp(72px, 9vw, 112px) 24px;
}
.sk-why__inner {
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  gap: 52px;
  align-items: start;
}
.sk-why__menu { display: flex; flex-direction: column; border-top: 1px solid var(--sk-line); margin-top: 36px; }
.sk-why__btn {
  text-align: right;
  cursor: pointer;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--sk-line);
  border-right: 3px solid transparent;
  padding: 20px 18px 20px 14px;
  display: flex; align-items: center; gap: 16px;
  opacity: .42;
  transition: .2s;
}
.sk-why__btn.is-active {
  opacity: 1;
  background: #fff8f8;
  border-right-color: var(--sk-red);
}
.sk-why__num { font-weight: 700; font-size: 12px; color: var(--sk-red); letter-spacing: 1px; min-width: 24px; }
.sk-why__label { font-weight: 700; font-size: 17.5px; color: var(--sk-ink); }
.sk-why__panel {
  position: relative;
  background: var(--sk-cream);
  border: 1px solid var(--sk-line);
  border-radius: 26px;
  padding: clamp(30px, 4vw, 52px);
  min-height: 320px;
  overflow: hidden;
  animation: sk-fadein .4s both;
}
.sk-why__watermark {
  position: absolute; left: -14px; bottom: -28px;
  font-size: 200px; font-weight: 800; color: rgba(0,0,0,.04); line-height: 1; pointer-events: none;
}
.sk-why__icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: #fff1f0; color: var(--sk-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 26px;
}
.sk-why__panel h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800; margin: 0 0 14px;
}
.sk-why__panel p { margin: 0; font-size: 17.5px; line-height: 1.65; color: #5a5a63; }
@media (max-width: 820px) {
  .sk-why__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Leagues */
.sk-leagues {
  background: var(--sk-bg);
  color: #fff;
  padding: clamp(72px, 9vw, 112px) 24px;
}
.sk-leagues__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.sk-leagues__list { border-top: 1px solid rgba(255,255,255,.1); }
.sk-league {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .22s, padding .22s;
}
.sk-league:hover {
  background: rgba(225,6,0,.1);
  padding-right: 28px;
  padding-left: 28px;
}
.sk-league__main { display: flex; align-items: center; gap: 20px; min-width: 0; }
.sk-league__num { font-weight: 700; font-size: 13px; color: rgba(255,255,255,.3); min-width: 28px; }
.sk-league__badge {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; color: #fff; flex: none;
}
.sk-league__names { display: flex; align-items: baseline; gap: 12px; min-width: 0; flex-wrap: wrap; }
.sk-league__he { font-weight: 700; font-size: clamp(20px, 3vw, 32px); color: #fff; letter-spacing: -.5px; }
.sk-league__en { font-weight: 600; font-size: 14px; color: rgba(255,255,255,.38); }
.sk-league__arrow { color: var(--sk-red); font-size: 22px; font-weight: 700; }
.sk-leagues__banner { position: sticky; top: 96px; }
.sk-leagues__banner img { width: 100%; border-radius: 18px; box-shadow: 0 24px 56px rgba(0,0,0,.55); }
@media (max-width: 900px) {
  .sk-leagues__split { grid-template-columns: 1fr; }
  .sk-leagues__banner { order: -1; position: static; }
}

/* Teams */
.sk-teams {
  background: var(--sk-bg);
  color: #fff;
  padding: clamp(60px, 7vw, 94px) 0 clamp(72px, 8vw, 108px);
  overflow: hidden;
}
.sk-teams__scroller {
  display: flex; gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px max(24px, calc((100% - 1240px) / 2 + 24px)) 16px;
  scrollbar-width: thin;
}
.sk-team {
  text-decoration: none;
  scroll-snap-align: start;
  flex: none; width: 158px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  padding: 24px 16px;
  text-align: center;
  transition: transform .25s, border-color .25s;
}
.sk-team:hover { transform: translateY(-6px); border-color: rgba(225,6,0,.6); }
.sk-team__crest {
  width: 74px; height: 74px; margin: 0 auto 14px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 22px;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.2);
}
.sk-team__name { font-weight: 700; font-size: 14.5px; color: #e7e7ea; }

/* Steps */
.sk-steps {
  background: var(--sk-cream);
  padding: clamp(72px, 9vw, 112px) 24px;
}
.sk-steps__head { max-width: 580px; margin: 0 0 56px; }
.sk-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.sk-step {
  padding: 0 32px 0 0;
  border-top: 3px solid var(--sk-red);
}
.sk-step__n {
  font-size: clamp(52px, 7.5vw, 80px);
  font-weight: 800; line-height: 1; letter-spacing: -2px;
  color: var(--sk-red); margin: 26px 0 18px;
}
.sk-step h3 { margin: 0 0 10px; font-size: 19px; font-weight: 800; }
.sk-step p { margin: 0; color: var(--sk-muted); font-size: 14.5px; line-height: 1.55; }
.sk-steps__ctas {
  margin-top: 48px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
@media (max-width: 960px) {
  .sk-steps__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 520px) {
  .sk-steps__grid { grid-template-columns: 1fr; }
}

/* Testimonials */
.sk-testimonials {
  background: var(--sk-bg);
  color: #fff;
  padding: clamp(44px, 5.5vw, 68px) 24px;
}
.sk-testimonials__head { margin-bottom: 36px; text-align: center; }
.sk-testimonials__body {
  display: flex; align-items: center; gap: clamp(28px, 5vw, 56px); flex-wrap: wrap;
  animation: sk-fadein .5s both;
}
.sk-testimonials__quote { flex: 1; min-width: 260px; }
.sk-testimonials__mark {
  font-size: clamp(52px, 6vw, 72px); line-height: .8;
  color: var(--sk-red); margin-bottom: 14px; font-weight: 300;
}
.sk-testimonials__quote p {
  font-size: clamp(17px, 2vw, 21px); line-height: 1.65; font-weight: 600;
  color: #e7e7ea; margin: 0 0 24px;
}
.sk-testimonials__person { display: flex; align-items: center; gap: 12px; }
.sk-testimonials__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--sk-red); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.sk-testimonials__name { font-weight: 800; font-size: 16.5px; }
.sk-testimonials__match { font-size: 13.5px; color: var(--sk-soft); }
.sk-testimonials__visual {
  flex: none; width: clamp(220px, 34vw, 360px); height: clamp(170px, 27vw, 290px);
  border-radius: 22px;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.09) 0 14px, rgba(255,255,255,.04) 14px 28px);
  border: 1px solid rgba(255,255,255,.14);
}
.sk-testimonials__dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 30px;
}
.sk-testimonials__dots button {
  border: none; padding: 0; width: 8px; height: 8px; border-radius: 100px;
  background: rgba(255,255,255,.25); cursor: pointer; transition: .35s;
}
.sk-testimonials__dots button.is-active {
  width: 28px; background: var(--sk-red);
}

/* Promo */
.sk-promo {
  background: var(--sk-cream);
  padding: clamp(52px, 6vw, 84px) 24px;
}
.sk-promo__card {
  text-decoration: none;
  display: block;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--sk-bg);
  color: #fff;
  padding: clamp(38px, 5vw, 64px);
}
.sk-promo__glow {
  position: absolute; inset: 0;
  background: radial-gradient(800px 460px at 88% 50%, rgba(225,6,0,.38), transparent 62%);
}
.sk-promo__content {
  position: relative;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
}
.sk-promo__content p { margin: 12px 0 0; color: #b9b9c0; font-size: 16.5px; line-height: 1.55; max-width: 640px; }

/* Articles */
.sk-articles, .sk-magazine {
  background: #fff;
  padding: clamp(64px, 8vw, 100px) 24px;
}
.sk-articles__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.sk-article {
  text-decoration: none;
  background: var(--sk-cream);
  border: 1px solid var(--sk-line);
  border-radius: 22px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  color: inherit;
  display: block;
}
.sk-article:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(0,0,0,.09); }
.sk-article__media {
  position: relative; height: 190px;
  background: repeating-linear-gradient(135deg, #eceae3 0 13px, #f3f1ec 13px 26px);
}
.sk-article__media img { width: 100%; height: 100%; object-fit: cover; }
.sk-article__tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--sk-ink); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 6px 13px; border-radius: 100px; z-index: 1;
}
.sk-article__body { padding: 24px; }
.sk-article__body h3 { margin: 0 0 8px; font-size: 18.5px; font-weight: 800; line-height: 1.3; }
.sk-article__body p { margin: 0 0 14px; color: var(--sk-muted); font-size: 14px; line-height: 1.55; }
.sk-article__more { color: var(--sk-red); font-weight: 700; font-size: 14px; }
@media (max-width: 860px) {
  .sk-articles__grid { grid-template-columns: 1fr; }
}

/* Contact */
.sk-contact {
  position: relative;
  background: var(--sk-bg);
  color: #fff;
  overflow: hidden;
}
.sk-contact__glow {
  position: absolute; inset: 0;
  background: radial-gradient(900px 540px at 14% 0%, rgba(225,6,0,.34), transparent 60%);
}
.sk-contact__dots {
  position: absolute; inset: 0; opacity: .45;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.sk-contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: clamp(64px, 8vw, 108px) 24px;
}
.sk-contact__copy p {
  font-size: 18px; color: #b9b9c0; line-height: 1.55;
  margin: 18px 0 26px; max-width: 460px;
}
.sk-contact__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.sk-contact__meta { font-size: 13.5px; color: #7a7a82; }
@media (max-width: 900px) {
  .sk-contact__inner { grid-template-columns: 1fr; gap: 36px; }
}

/* Footer */
.sk-footer {
  background: var(--sk-bg-deep);
  color: #b9b9c0;
  padding: clamp(52px, 6vw, 80px) 24px 40px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.sk-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.sk-footer__about { margin: 14px 0 0; font-size: 14.5px; line-height: 1.65; color: #8a8a92; max-width: 240px; }
.sk-footer__title { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 14px; }
.sk-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.sk-footer__links a { color: #9a9aa3; text-decoration: none; font-size: 14.5px; }
.sk-footer__links a:hover { color: #fff; }
.sk-footer__legal { margin: 22px 0 0; font-size: 12px; color: #6a6a72; line-height: 1.6; max-width: 760px; }
@media (max-width: 900px) {
  .sk-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .sk-footer__grid { grid-template-columns: 1fr; }
}

/* Floating WA + Mobile bottom bar
   CRITICAL: bottom bar ONLY on mobile — hidden on desktop */
.sk-float-wa {
  position: fixed;
  left: 18px;
  bottom: 24px;
  z-index: 75;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--sk-wa);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37,211,102,.45);
  animation: sk-float 3.5s ease-in-out infinite;
}

.sk-mobile-bar {
  display: none; /* desktop: hidden */
}

@media (max-width: 768px) {
  body.sportik { padding-bottom: 64px; }
  .sk-footer { padding-bottom: 100px; }
  .sk-float-wa { bottom: 84px; }
  .sk-mobile-bar {
    display: flex; /* mobile only */
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 70;
    background: var(--sk-bg-deep);
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 -6px 24px rgba(0,0,0,.4);
  }
  .sk-mobile-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 8px;
  }
  .sk-mobile-bar__call { background: var(--sk-red); color: #fff; }
  .sk-mobile-bar__wa { background: var(--sk-wa); color: var(--sk-wa-ink); }
}

/* Page heroes / matches / legal / article */
.sk-page-hero {
  position: relative;
  background: var(--sk-bg);
  color: #fff;
  overflow: hidden;
  padding: 140px 0 84px;
}
.sk-page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(1000px 620px at 80% 6%, rgba(225,6,0,.3), transparent 60%);
}
.sk-page-hero .sk-wrap { position: relative; }
.sk-page-hero--compact { padding: 130px 0 56px; }
.sk-page-hero__title {
  font-weight: 800;
  font-size: clamp(34px, 5.4vw, 70px);
  line-height: 1.02;
  letter-spacing: -1.6px;
  margin: 0 0 22px;
  max-width: 980px;
}
.sk-page-hero__text {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: #b9b9c0;
  max-width: 680px;
  margin: 0 0 30px;
}
.sk-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: #9a9aa3; margin-bottom: 26px;
}
.sk-breadcrumb a { color: #9a9aa3; text-decoration: none; }
.sk-breadcrumb .is-current { color: var(--sk-red); }
.sk-breadcrumb--light { color: var(--sk-muted); }
.sk-breadcrumb--light a { color: var(--sk-muted); }

.sk-matches-clubs { background: var(--sk-cream); padding: clamp(64px, 8vw, 104px) 24px; }
.sk-matches-clubs__head { max-width: 720px; margin: 0 0 44px; }
.sk-matches-clubs__head p { margin: 14px 0 0; color: var(--sk-muted); font-size: 16.5px; line-height: 1.6; }
.sk-clubs-grid {
  display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr);
}
.sk-club {
  background: #fff; border: 1px solid var(--sk-line); border-radius: 20px;
  padding: 24px; display: flex; align-items: center; gap: 16px;
  transition: transform .25s, box-shadow .25s;
}
.sk-club:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(0,0,0,.08); }
.sk-club__crest {
  flex: none; width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 18px;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.22);
}
.sk-club__name { font-weight: 800; font-size: 18px; }
.sk-club__line { font-size: 13.5px; color: var(--sk-soft); }
@media (max-width: 900px) { .sk-clubs-grid { grid-template-columns: 1fr; } }

.sk-matches-comps { background: #fff; padding: clamp(64px, 8vw, 104px) 24px; }
.sk-comps-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); margin-top: 44px; }
.sk-comp { background: var(--sk-cream); border: 1px solid var(--sk-line); border-radius: 22px; overflow: hidden; }
.sk-comp__banner {
  height: 160px; display: flex; align-items: center; justify-content: center;
}
.sk-comp__banner span {
  width: 66px; height: 66px; border-radius: 16px;
  background: rgba(255,255,255,.16); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px; color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.sk-comp__body { padding: 26px; }
.sk-comp__body h3 { margin: 0 0 8px; font-size: 21px; font-weight: 800; }
.sk-comp__body p { margin: 0; color: var(--sk-muted); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 900px) { .sk-comps-grid { grid-template-columns: 1fr; } }

.sk-stadium { background: var(--sk-cream); padding: clamp(64px, 8vw, 104px) 24px; }
.sk-stadium > .sk-wrap > div:first-child { max-width: 680px; margin: 0 0 40px; }
.sk-stadium > .sk-wrap > div:first-child p { margin: 14px 0 0; color: var(--sk-muted); font-size: 16.5px; line-height: 1.6; }
.sk-stadium__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.sk-stadium__svg {
  width: 100%; max-width: 360px; margin: 0 auto; display: block;
  border-radius: 26px; box-shadow: 0 26px 60px rgba(0,0,0,.22);
}
.sk-stadium__svg [data-zone].is-active { fill: var(--sk-red) !important; }
.sk-stadium__seats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px;
}
.sk-seat {
  text-align: right; cursor: pointer; font-family: inherit;
  background: #fff; border: 2px solid var(--sk-line); border-radius: 16px; padding: 18px;
  transition: .25s;
}
.sk-seat.is-active { background: var(--sk-ink); border-color: var(--sk-ink); color: #fff; }
.sk-seat__title { font-weight: 800; font-size: 17px; margin-bottom: 4px; }
.sk-seat__tag { font-size: 13px; color: var(--sk-soft); }
.sk-seat.is-active .sk-seat__tag { color: #b9b9c0; }
.sk-stadium__info {
  background: var(--sk-ink); color: #fff; border-radius: 18px; padding: 26px;
}
.sk-stadium__info-title { font-weight: 800; font-size: 20px; margin-bottom: 8px; }
.sk-stadium__info p { margin: 0; color: #b9b9c0; font-size: 15.5px; line-height: 1.6; }
@media (max-width: 880px) {
  .sk-stadium__grid { grid-template-columns: 1fr; gap: 36px; }
}

.sk-checklist {
  background: var(--sk-bg); color: #fff;
  padding: clamp(64px, 8vw, 104px) 24px;
}
.sk-checklist__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.sk-checklist__inner p { margin: 0 0 22px; color: #b9b9c0; font-size: 16.5px; line-height: 1.6; }
.sk-check-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.sk-check-item__icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--sk-wa); color: var(--sk-wa-ink);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.sk-check-item__title { font-weight: 800; font-size: 17px; margin-bottom: 3px; }
.sk-check-item__text { color: var(--sk-soft); font-size: 14.5px; line-height: 1.5; }
@media (max-width: 900px) {
  .sk-checklist__inner { grid-template-columns: 1fr; gap: 36px; }
}

.sk-why-box { background: var(--sk-cream); padding: clamp(56px, 7vw, 96px) 24px; }
.sk-why-box__card {
  max-width: 920px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--sk-line); border-radius: 26px;
  padding: clamp(36px, 5vw, 60px);
}
.sk-why-box__card p {
  margin: 20px auto 0; max-width: 720px;
  font-size: clamp(16px, 1.9vw, 19px); line-height: 1.65; color: #5a5a63;
}

/* Legal */
.sk-legal { background: #fbf9f5; padding: clamp(40px, 5vw, 64px) 24px clamp(60px, 7vw, 90px); }
.sk-legal__layout {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 2.4fr);
  gap: 40px; align-items: start;
}
.sk-legal-tabs {
  display: inline-flex;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: 5px; gap: 4px;
}
.sk-legal-tabs button {
  cursor: pointer; font-family: inherit; font-weight: 700; font-size: 15px;
  padding: 11px 24px; border-radius: 100px; border: none;
  background: transparent; color: #b9b9c0; transition: .25s;
}
.sk-legal-tabs button.is-active { background: #fff; color: var(--sk-ink); }
.sk-legal__aside { position: sticky; top: 96px; }
.sk-legal__toc {
  background: #fff; border: 1px solid #e7e3da; border-radius: 18px; padding: 22px;
}
.sk-legal__toc-title { font-size: 13px; color: #8a8a92; margin-bottom: 10px; }
.sk-legal__card {
  background: #fff; border: 1px solid #e7e3da; border-radius: 22px;
  padding: clamp(26px, 3.4vw, 48px);
}
.sk-legal__updated { font-size: 13.5px; color: #8a8a92; margin-bottom: 8px; }
.sk-legal__card h2 {
  font-weight: 800; font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: -.8px; margin: 0 0 20px;
}
.sk-legal__notice {
  background: #fff7f6; border: 1px solid #f3c9c5; border-right: 4px solid var(--sk-red);
  border-radius: 14px; padding: 18px 20px; margin-bottom: 30px;
  font-size: 15.5px; line-height: 1.65; color: #7a2520; font-weight: 600;
}
.sk-legal .entry-content h3 { font-weight: 800; font-size: 20px; margin: 28px 0 12px; }
.sk-legal .entry-content p { font-size: 16px; line-height: 1.75; color: #3a3a40; }
@media (max-width: 880px) {
  .sk-legal__layout { grid-template-columns: 1fr; }
  .sk-legal__aside { position: static; }
}

/* Article page */
.sk-article-page { background: #fbfaf8; padding-bottom: 80px; }
.sk-article-page__header { padding: 120px 24px 0; max-width: 800px; }
.sk-article-page__tag {
  display: inline-block; background: var(--sk-ink); color: #fff;
  font-size: 12.5px; font-weight: 700; padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.sk-article-page__header h1 {
  font-weight: 800; font-size: clamp(32px, 5vw, 56px);
  line-height: 1.06; letter-spacing: -1.4px; margin: 0 0 22px;
}
.sk-article-page__meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--sk-muted); font-size: 14.5px; font-weight: 600;
  padding-bottom: 26px; border-bottom: 1px solid var(--sk-line);
}
.sk-article-page__author { display: flex; align-items: center; gap: 9px; }
.sk-article-page__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--sk-red); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px;
}
.sk-article-page__thumb { max-width: 1020px; margin: 30px auto 0; padding: 0 24px; }
.sk-article-page__thumb img { width: 100%; border-radius: 24px; max-height: 450px; object-fit: cover; }
.sk-article-page__content {
  max-width: 720px; margin: 0 auto; padding: 48px 24px 0;
  font-size: 18px; line-height: 1.78; color: #26262b;
}
.sk-article-page__content h2 {
  font-weight: 800; font-size: clamp(24px, 3.2vw, 32px);
  letter-spacing: -.6px; margin: 40px 0 14px;
}
.sk-article-page__cta { max-width: 720px; margin: 40px auto 0; padding: 0 24px; }
.sk-article-page__cta-card {
  position: relative; border-radius: 22px; overflow: hidden;
  background: var(--sk-bg); color: #fff;
  padding: clamp(28px, 4vw, 40px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
}
.sk-article-page__cta-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 360px at 85% 0%, rgba(225,6,0,.45), transparent 62%);
}
.sk-article-page__cta-card > * { position: relative; }
.sk-article-page__cta-card h3 { margin: 0 0 6px; font-size: clamp(22px, 3vw, 30px); font-weight: 800; }
.sk-article-page__cta-card p { margin: 0; color: #b9b9c0; font-size: 16px; }
.sk-article-page__cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.sk-page { background: #fff; padding: 120px 0 80px; min-height: 60vh; }
.sk-page__header h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; margin: 0 0 24px; }
.sk-empty { color: var(--sk-muted); padding: 40px 0; }

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* Gutenberg alignment */
.alignfull { width: 100vw; max-width: 100vw; margin-right: calc(50% - 50vw); margin-left: calc(50% - 50vw); }
.wp-block-sportik-hero,
.wp-block-sportik-stats,
.wp-block-sportik-why,
.wp-block-sportik-leagues,
.wp-block-sportik-teams,
.wp-block-sportik-steps,
.wp-block-sportik-testimonials,
.wp-block-sportik-promo,
.wp-block-sportik-articles,
.wp-block-sportik-contact-cta,
.wp-block-sportik-lead-form { margin: 0; max-width: none; }

/* Editor preview */
.editor-styles-wrapper .sk-hero { min-height: 200px; }
