@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Cairo:wght@400;600;700;800;900&display=swap');

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

:root {
  --g: #007940;
  --gl: #00a352;
  --gd: #005a2f;
  --blk: #070a08;
  --blk2: #0f1410;
  --blk3: #151c16;
  --wh: #ffffff;
  --w08: rgba(255, 255, 255, 0.08);
  --w04: rgba(255, 255, 255, 0.04);
  --gold: #f5c518;
  --silver: #a8b8c8;
  --bronze: #cd7f32;
  --txt: rgba(255, 255, 255, 0.85);
  --txt2: rgba(255, 255, 255, 0.5);
  --txt3: rgba(255, 255, 255, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--blk);
  color: var(--wh);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 4%;
  background: rgba(7, 10, 8, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 121, 64, 0.18);
  animation: slideD .5s ease both;
}

@keyframes slideD {
  from {
    opacity: 0;
    transform: translateY(-16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.logo-w {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.logo-ball {
  width: 46px;
  height: 46px;
}



.logo-txt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: .5px;
  color: var(--wh);
}

.logo-txt span {
  color: var(--g);
}

.nav-l {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-l a {
  color: var(--txt2);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  transition: color .25s;
}

.nav-l a:hover {
  color: var(--g);
}

.nav-cta {
  background: var(--g) !important;
  color: var(--wh) !important;
  padding: .42rem 1.1rem;
  border-radius: 8px;
  font-weight: 700 !important;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 4% 3rem;
}

.hero-left {
  position: relative;
  z-index: 3;
  max-width: 560px;
  animation: fadeUp .8s .3s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* PITCH BG */
.pitch-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pitch-bg svg {
  position: absolute;
  right: -5%;
  bottom: 0;
  height: 100%;
  opacity: .07;
}

/* ANIMATED PLAYER SCENE */
.player-scene {
  position: absolute;
  right: 3%;
  bottom: 0;
  width: min(55%, 520px);
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.player-scene svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* GOAL POST */
.goal-post {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(30%, 280px);
  height: 65%;
  pointer-events: none;
  z-index: 1;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 121, 64, 0.18);
  border: 1px solid rgba(0, 121, 64, 0.4);
  color: #4ade80;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.3rem;
}

.ldot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 1.2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .15
  }
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -2px;
}

.hero h1 em {
  font-style: normal;
  color: var(--g);
}

.hero-sub {
  font-size: 1rem;
  color: var(--txt2);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2rem;
}

.btns-row {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.btn-g {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--g);
  color: var(--wh);
  padding: .8rem 1.8rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .3s;
}

.btn-g:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 121, 64, .45);
}

.btn-out {
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--wh);
  padding: .8rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all .25s;
}

.btn-out:hover {
  border-color: var(--g);
  background: rgba(0, 121, 64, .1);
}

/* STATS STRIP */
.stats-s {
  background: var(--g);
  padding: 1.4rem 4%;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.stats-s::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, .2);
  animation: sweep 4s linear infinite;
}

@keyframes sweep {
  to {
    left: 100%;
  }
}

.stat-i {
  text-align: center;
}

.stat-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  display: block;
}

.stat-l {
  font-size: .72rem;
  font-weight: 600;
  opacity: .75;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* SECTION HELPERS */
.sec {
  padding: 6rem 4%;
  max-width: 1440px;
  margin: 0 auto;
}

.sec-bg {
  background: var(--blk2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--g);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--g);
  border-radius: 1px;
}

.sec-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: .8rem;
}

.sec-h em {
  font-style: normal;
  color: var(--g);
}

.sec-p {
  color: var(--txt2);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 450px;
}

/* FEATURES */
.feats-g {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}

.fc {
  background: var(--blk3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 1.7rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
  opacity: 0;
  transform: translateY(24px);
}

.fc.vis {
  animation: cIn .5s ease forwards;
}

@keyframes cIn {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.fc:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 121, 64, .4);
}

.fc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--g);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.fc:hover::after {
  transform: scaleX(1);
}

.fc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0, 121, 64, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 20px;
  transition: background .3s;
}

.fc:hover .fc-icon {
  background: rgba(0, 121, 64, .3);
}

.fc-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.fc-desc {
  font-size: .85rem;
  color: var(--txt2);
  line-height: 1.65;
}

.fc-tag {
  display: inline-block;
  margin-top: .7rem;
  background: rgba(0, 121, 64, .18);
  color: #4ade80;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 50px;
}

/* ABOUT */
.about-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem 4%;
}

.about-img-wrap {
  position: relative;
}

.pitch-art {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(0, 121, 64, .25);
  overflow: hidden;
}

.about-vals {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: 2rem;
}

.val-row {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: 1rem;
  background: var(--blk2);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .05);
  transition: border-color .3s;
}

.val-row:hover {
  border-color: rgba(0, 121, 64, .35);
}

.val-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0, 121, 64, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.val-txt strong {
  display: block;
  font-size: .9rem;
  margin-bottom: .2rem;
}

.val-txt span {
  font-size: .82rem;
  color: var(--txt2);
}

/* GALLERY */
.gallery-sec {
  padding: 6rem 4%;
}

.gallery-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.gallery-tabs {
  display: flex;
  gap: .6rem;
  margin-top: 2rem;
  margin-bottom: 1.8rem;
}

.gtab {
  padding: .45rem 1.1rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--txt2);
  background: transparent;
  transition: all .25s;
}

.gtab.active,
.gtab:hover {
  background: var(--g);
  color: var(--wh);
  border-color: var(--g);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.g-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
  cursor: pointer;
  transition: transform .3s, border-color .3s;
  position: relative;
}

.g-item:hover {
  transform: scale(1.02);
  border-color: rgba(0, 121, 64, .45);
}

.g-item.tall {
  grid-row: span 2;
}

.g-item.wide {
  grid-column: span 2;
}

.g-art {
  width: 100%;
  display: block;
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .0);
  transition: background .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-item:hover .g-overlay {
  background: rgba(0, 121, 64, .35);
}

.g-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wh);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .3s, transform .3s;
}

.g-item:hover .g-play {
  opacity: 1;
  transform: scale(1);
}

.play-tri {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent var(--g);
  margin-left: 3px;
}

/* VIDEO items */
.g-video-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(229, 62, 62, .85);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: .06em;
}

/* GAMIFICATION */
.gami-sec {
  background: var(--blk2);
  padding: 6rem 4%;
}

.gami-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.gami-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gc {
  background: var(--blk3);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 1.2rem;
  transition: transform .3s, border-color .3s;
}

.gc:hover {
  transform: scale(1.03);
  border-color: rgba(0, 121, 64, .4);
}

.gc.span2 {
  grid-column: 1/-1;
}

.gc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--g);
}

.gc-lbl {
  font-size: .78rem;
  color: var(--txt2);
  margin-top: .2rem;
}

.lv-pill {
  background: var(--g);
  color: var(--wh);
  font-size: .7rem;
  font-weight: 800;
  padding: .2rem .6rem;
  border-radius: 6px;
}

.xp-bg {
  height: 8px;
  background: rgba(255, 255, 255, .07);
  border-radius: 50px;
  overflow: hidden;
  margin: .5rem 0 .3rem;
}

.xp-fill {
  height: 100%;
  background: var(--g);
  border-radius: 50px;
  width: 72%;
  animation: xpA 2s 1.5s ease both;
  transform-origin: left;
  transform: scaleX(0);
}

@keyframes xpA {
  to {
    transform: scaleX(1)
  }
}

.bdg-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .6rem;
}

.bdg {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blk);
  border: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform .2s;
}

.bdg:hover {
  transform: scale(1.18);
}

.lb-row {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.lb-row:last-child {
  border: none;
}

.lb-rank {
  font-size: .82rem;
  font-weight: 800;
  width: 18px;
  text-align: center;
}

.lb-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: 800;
  flex-shrink: 0;
}

.lb-name {
  flex: 1;
  font-size: .8rem;
  font-weight: 600;
}

.lb-pts {
  font-size: .75rem;
  color: var(--g);
  font-weight: 700;
}

.coin-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 700;
  background: rgba(245, 197, 24, .12);
  color: var(--gold);
  padding: .25rem .7rem;
  border-radius: 50px;
  border: 1px solid rgba(245, 197, 24, .2);
}

.pop-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 700;
  background: rgba(0, 163, 82, .12);
  color: #4ade80;
  padding: .25rem .7rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 163, 82, .2);
}

/* CONTACT */
.contact-sec {
  padding: 6rem 4%;
}

.contact-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ci-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--blk2);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: border-color .3s;
}

.ci-row:hover {
  border-color: rgba(0, 121, 64, .35);
}

.ci-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 121, 64, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.ci-lbl {
  font-size: .8rem;
  color: var(--txt3);
  margin-bottom: .15rem;
}

.ci-val {
  font-size: .9rem;
  font-weight: 600;
  color: var(--wh);
}

.contact-form {
  background: var(--blk2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  padding: 2rem;
}

.cf-row {
  margin-bottom: 1rem;
}

.cf-lbl {
  display: block;
  font-size: .8rem;
  color: var(--txt2);
  margin-bottom: .45rem;
  font-weight: 500;
}

.cf-input {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: .75rem 1rem;
  color: var(--wh);
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .25s;
}

.cf-input:focus {
  border-color: var(--g);
}

.cf-input::placeholder {
  color: var(--txt3);
}

textarea.cf-input {
  resize: vertical;
  min-height: 110px;
}

.cf-btn {
  width: 100%;
  background: var(--g);
  color: var(--wh);
  border: none;
  border-radius: 10px;
  padding: .85rem;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: transform .2s, box-shadow .3s;
}

.cf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 121, 64, .4);
}

/* DL CTA */
.dl-sec {
  text-align: center;
  padding: 5rem 4%;
}

.dl-inner {
  max-width: 680px;
  margin: 0 auto;
}

.app-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blk2);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  padding: .8rem 1.4rem;
  text-decoration: none;
  color: var(--wh);
  transition: all .25s;
  min-width: 155px;
}

.app-btn:hover {
  border-color: var(--g);
  background: rgba(0, 121, 64, .12);
  transform: translateY(-2px);
}

.app-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.abt small {
  display: block;
  font-size: .65rem;
  color: var(--txt2);
}

.abt strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
}

/* FOOTER */
footer {
  background: var(--blk2);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 2.5rem 4% 1.5rem;
}

.foot-top {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.foot-brand {
  flex: 1;
  min-width: 180px;
}

.foot-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--wh);
  display: block;
  margin-bottom: .4rem;
}

.foot-logo span {
  color: var(--g);
}

.foot-tagline {
  font-size: .8rem;
  color: var(--txt3);
  margin: 0 0 1rem;
}

.foot-socials {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
}

.soc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blk3);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt2);
  transition: all .22s;
  text-decoration: none;
  flex-shrink: 0;
}

.soc-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.soc-icon:hover     { border-color: transparent; color: #fff; transform: translateY(-2px); }
.soc-facebook:hover { background: #1877F2; }
.soc-instagram:hover{ background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.soc-snapchat:hover { background: #FFFC00; color: #000; }
.soc-tiktok:hover   { background: #010101; box-shadow: 0 0 0 1px #69C9D0; }
.soc-linkedin:hover { background: #0A66C2; }
.soc-youtube:hover  { background: #FF0000; }

.foot-col {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  min-width: 160px;
}

.foot-col-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--txt2);
  margin-bottom: .2rem;
}

.foot-col a {
  color: var(--txt3);
  text-decoration: none;
  font-size: .82rem;
  transition: color .2s;
}

.foot-col a:hover {
  color: var(--g);
}

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding-top: 1.2rem;
}

.foot-copy {
  color: var(--txt3);
  font-size: .78rem;
}

/* Payment brands in footer */
.payment-brands {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.pb-label {
  font-size: .72rem;
  color: var(--txt3);
  white-space: nowrap;
}

.brand-visa,
.brand-mc {
  height: 26px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .4);
}

/* POLICY PAGES */
.policy-hero {
  background: var(--blk2);
  border-bottom: 1px solid rgba(0, 121, 64, .15);
  padding: 5rem 4% 3.5rem;
}

.policy-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.policy-hero .eyebrow {
  margin-bottom: .6rem;
}

.policy-hero .sec-h {
  margin-bottom: .5rem;
}

.policy-hero .sec-p {
  color: var(--txt3);
  font-size: .85rem;
  margin: 0;
}

.policy-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 4% 5rem;
}

.policy-card {
  background: var(--blk2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.2rem;
  transition: border-color .3s;
}

.policy-card:hover {
  border-color: rgba(0, 121, 64, .3);
}

.policy-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.3px;
  margin-bottom: .85rem;
  color: var(--wh);
}

.policy-card p {
  font-size: .9rem;
  color: var(--txt2);
  line-height: 1.75;
  margin-bottom: .7rem;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-card ul {
  margin: .5rem 0 .7rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.policy-card ul li {
  font-size: .88rem;
  color: var(--txt2);
  line-height: 1.6;
}

.policy-card a {
  color: #4ade80;
  text-decoration: none;
  transition: opacity .2s;
}

.policy-card a:hover {
  opacity: .75;
}

/* Price tables */
.price-table {
  margin: 1rem 0;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  overflow: hidden;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .5rem;
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  align-items: center;
}

.price-row:last-child {
  border-bottom: none;
}

.price-header {
  background: rgba(0, 121, 64, .12);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--txt2);
}

.price-featured {
  background: rgba(0, 121, 64, .08);
}

.price-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--wh);
}

.price-duration {
  font-size: .82rem;
  color: var(--txt2);
}

.price-val {
  font-size: .9rem;
  font-weight: 700;
  color: #4ade80;
  text-align: right;
}

.price-badge {
  display: inline-block;
  background: var(--g);
  color: var(--wh);
  font-size: .62rem;
  font-weight: 800;
  padding: .15rem .45rem;
  border-radius: 4px;
  margin-left: .4rem;
  vertical-align: middle;
}

.price-note {
  font-size: .8rem;
  color: var(--txt3);
  margin-top: .75rem;
}

/* Inline payment brands on merchandise page */
.payment-brands-inline {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.pb-chip {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.pb-chip svg {
  height: 32px;
  width: auto;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.pb-chip span {
  font-size: .85rem;
  color: var(--txt2);
  font-weight: 500;
}

/* Policy page nav */
.policy-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.policy-nav-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.policy-nav-links a {
  color: var(--txt2);
  text-decoration: none;
  font-size: .84rem;
  transition: color .2s;
}

.policy-nav-links a:hover {
  color: var(--g);
}

/* REVEAL */
.rev {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.rev.vis {
  opacity: 1;
  transform: translateY(0);
}

@media(max-width:900px) {

  .about-inner,
  .gami-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

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

  .g-item.wide {
    grid-column: auto;
  }

  nav .nav-l a:not(.nav-cta) {
    display: none;
  }
}

@media(max-width:600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .g-item.tall,
  .g-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .gami-cards {
    grid-template-columns: 1fr;
  }
}

/* LANGUAGE SWITCHER */
.lang-sw {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.lang-btn {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--txt3);
  text-decoration: none;
  padding: .2rem .45rem;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: all .2s;
}

.lang-btn:hover {
  color: var(--g);
  border-color: rgba(0, 121, 64, .4);
}

.lang-btn.lang-active {
  color: var(--g);
  border-color: rgba(0, 121, 64, .4);
  background: rgba(0, 121, 64, .08);
}

.lang-divider {
  color: var(--txt3);
  font-size: .65rem;
}

/* ===== RTL / ARABIC OVERRIDES ===== */
[dir="rtl"] body {
  font-family: 'Cairo', sans-serif;
}

/* Arabic headings — reset tight letter-spacing & allow taller line-height */
[dir="rtl"] .hero h1,
[dir="rtl"] .sec-h,
[dir="rtl"] .foot-logo {
  font-family: 'Cairo', sans-serif;
  letter-spacing: 0;
}

[dir="rtl"] .hero h1 {
  line-height: 1.15;
}

[dir="rtl"] .sec-h {
  line-height: 1.2;
}

/* CTA section heading */
[dir="rtl"] #dl h2 {
  font-family: 'Cairo', sans-serif;
  letter-spacing: 0;
  line-height: 1.3;
}

/* Eyebrow: move the decorative line to after the text in RTL */
[dir="rtl"] .eyebrow::before {
  display: none;
}

[dir="rtl"] .eyebrow::after {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--g);
  border-radius: 1px;
}

/* Feature card top-border animation — grow from right in RTL */
[dir="rtl"] .fc::after {
  transform-origin: right;
}

/* Hero scene: player illustration flips to the left side */
[dir="rtl"] .player-scene {
  right: auto;
  left: 3%;
}

[dir="rtl"] .pitch-bg svg {
  right: auto;
  left: -5%;
}

/* XP bar grows from right in RTL */
[dir="rtl"] .xp-fill {
  transform-origin: right;
}

/* Gallery video badge flips to the right corner */
[dir="rtl"] .g-video-badge {
  left: auto;
  right: 10px;
}

/* Price table value aligns left in RTL (it was right-aligned) */
[dir="rtl"] .price-val {
  text-align: left;
}

[dir="rtl"] .price-badge {
  margin-left: 0;
  margin-right: .4rem;
}

/* Policy page list indentation flips */
[dir="rtl"] .policy-card ul {
  margin-left: 0;
  margin-right: 1.2rem;
}

/* Nav CTA letter-spacing off for Arabic */
[dir="rtl"] .nav-cta,
[dir="rtl"] .stat-l,
[dir="rtl"] .eyebrow,
[dir="rtl"] .lv-pill {
  letter-spacing: 0;
}

/* Footer bottom row wraps correctly in RTL */
[dir="rtl"] .foot-bottom {
  flex-direction: row-reverse;
}

/* Stat strip — keep numbers using ltr digits */
[dir="rtl"] .stat-n {
  direction: ltr;
  display: inline-block;
}

/* ── APP DOWNLOAD SECTION ───────────────────────────────────────────── */
.app-dl-sec {
  background: var(--blk2);
  border-top: 1px solid rgba(0,121,64,.15);
  border-bottom: 1px solid rgba(0,121,64,.15);
  padding: 5rem 4%;
  overflow: hidden;
  position: relative;
}

.app-dl-sec::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,121,64,.12) 0%, transparent 70%);
  pointer-events: none;
}

.app-dl-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-dl-text {
  max-width: 560px;
}

.store-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--blk3);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: .85rem 1.6rem;
  color: var(--wh);
  text-decoration: none;
  transition: all .25s;
  min-width: 170px;
}

.store-badge:hover {
  border-color: var(--g);
  background: rgba(0,121,64,.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,121,64,.2);
}

.store-badge svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  fill: currentColor;
}

.store-badge-txt small {
  display: block;
  font-size: .62rem;
  color: var(--txt2);
  line-height: 1;
  margin-bottom: 2px;
}

.store-badge-txt strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1;
}

/* Phone mockup */
.app-dl-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  width: 220px;
  background: #0d1a10;
  border-radius: 36px;
  border: 2px solid rgba(0,121,64,.4);
  padding: 14px;
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(0,121,64,.1);
}

.phone-screen {
  background: #071a0d;
  border-radius: 26px;
  overflow: hidden;
  padding: 16px 14px 20px;
}

.phone-status {
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  margin: 0 auto 18px;
}

.phone-content {
  text-align: center;
}

.ph-logo {
  font-size: 2rem;
  margin-bottom: .3rem;
}

.ph-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .1em;
  color: var(--g);
  margin-bottom: 14px;
}

.ph-bar {
  height: 7px;
  background: rgba(0,121,64,.25);
  border-radius: 6px;
  margin-bottom: 7px;
}

.ph-bar--short {
  width: 65%;
  margin: 0 auto 16px;
}

.ph-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 16px;
}

.ph-stat span {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--wh);
}

.ph-stat small {
  font-size: .6rem;
  color: var(--txt2);
}

.ph-btn-g {
  background: var(--g);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 8px;
  padding: .5rem;
}

.phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,121,64,.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

@media(max-width:900px) {
  .app-dl-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .store-btns { justify-content: center; }
  .app-dl-visual { margin-top: 2rem; }
  .app-dl-text { max-width: 100%; }
}

[dir="rtl"] .app-dl-sec::before { right: auto; left: -120px; }

/* ── WHATSAPP FLOATING BUTTON ───────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.2s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { transform: scale(1.5); opacity: 0;  }
  100% { transform: scale(1.5); opacity: 0;  }
}

.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,.55);
}

[dir="rtl"] .wa-float {
  right: auto;
  left: 28px;
}