@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&display=swap");

:root {
  --blue-dark: #0c1b54;
  --blue: #12328f;
  --lime: #9ff43c;
  --lime-strong: #8be22c;
  --mint: #eafff4;
  --sky: #eaf4ff;
  --text: #0b142d;
  --muted: #5a6480;
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(12, 27, 84, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: #f6f9fe;
  color: var(--text);
  line-height: 1.6;
}

.hero-sec {
  position: relative;
  background-color: #1a237e;
  padding: 120px 0 0;
  min-height: 900px;
  background-image: url(images/background-main.png);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
/* .hero-sec::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
   
    z-index: 1;
    opacity: 0.2;
} */

section.how {
  overflow: hidden;
}

.container {
  max-width: 1640px;
  margin: 0 auto;
}
.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mob-platform {
  padding: 16px 18px;
  background-color: #ffffff1f;
  border-radius: 15px;
  box-shadow: 0px 4px 34.1px 0px #00000040;
  display: flex;
  gap: 15px;
  flex-direction: row-reverse;
  margin-bottom: 33px;
}
.mob-platform a {
  margin-bottom: 0;
  line-height: 1;
}
.hero-wrapper > span {
  font-size: 33px;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
}
.hero-wrapper > h1 {
  font-size: 70px;
  line-height: 1;
  color: #ccff00;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.player-img {
  position: absolute;
  bottom: 0;
  left: -200px;
}
.moving-ball {
  position: absolute;
  right: 120px;
  bottom: 368px;
  mix-blend-mode: color-dodge;
}
img.green-vector {
  position: absolute;
  right: 0;
  bottom: -200px;
}
header.header {
  position: absolute;
  top: 0;
  margin: 16px 0;
  width: 100%;
}
nav.hero__nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-page .header,
.policy-page .header,
.terms-page .header {
  position: relative;
  margin: 0;
  padding: 16px 0;
  background: var(--blue-dark);
}
.contact-page nav.hero__nav,
.policy-page nav.hero__nav,
.terms-page nav.hero__nav {
  padding: 0px 0px;
}
.policy-page,
.terms-page {
  background: #f6f9fe;
}

.policy {
  max-width: 1150px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

.policy-hero {
  background: linear-gradient(135deg, #0c1b54, #12328f);
  color: #fff;
  padding: 38px 32px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.policy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(159, 244, 60, 0.14),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 40%,
      rgba(159, 244, 60, 0.12),
      transparent 30%
    );
  pointer-events: none;
}

.policy-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 6px;
}

.policy-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 34px);
  color: #8be22c;
}

.policy-hero__lede {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
}

.policy-hero__meta {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.policy-section {
  margin-top: 28px;
  background: #fff;
  border: 1px solid #e2e9f4;
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.policy-section__header h2 {
  margin: 0;
  font-size: 20px;
}

.policy-section__header p {
  margin: 4px 0 12px;
  color: var(--muted);
}

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

.policy-grid--two {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.policy-grid--three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.policy-card {
  background: #f9fbff;
  border: 1px solid #dbe7f5;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 10px 28px rgba(12, 27, 84, 0.08);
}

.policy-card h3 {
  margin: 0 0 8px;
  color: #0c1b54;
}

.policy-card h4 {
  margin: 10px 0 6px;
  color: #0f255f;
}

.policy-card ul {
  margin: 0;
  padding-left: 18px;
  color: #3c455d;
}

.policy-card li {
  margin: 4px 0;
}

.policy-card p {
  margin: 4px 0;
  color: #3c455d;
}

.muted {
  color: var(--muted);
}

.support-hero {
  max-width: 1150px;
  margin: 30px auto 10px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.support-hero__text {
  background: linear-gradient(135deg, #0c1b54, #12328f);
  color: #fff;
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.support-hero__text::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(159, 244, 60, 0.14),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(159, 244, 60, 0.12),
      transparent 30%
    );
  pointer-events: none;
}

.support-hero__text .eyebrow {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.support-hero__text h1 {
  margin: 6px 0 10px;
  font-size: clamp(26px, 4vw, 34px);
  color: #8be22c;
  text-align: center;
}

.support-hero__text .lede {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.support-badges {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.support-hero__card {
  background: #fff;
  border: 1px solid #e2e9f4;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.support-hero__card h3 {
  margin: 0 0 10px;
  color: #0c1b54;
}

.contact__details.compact {
  gap: 10px;
}

.contact-page .contact {
  max-width: 1150px;
  margin: 10px auto 60px;
  padding: 0 20px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e2e9f4;
  box-shadow: var(--shadow);
}

.contact-page .contact__info {
  background: #f9fbff;
  border: 1px solid #dbe7f5;
}

.contact-page .contact__form-card {
  background: #fefefe;
}

.contact__status .client-error {
  color: #e74c3c;
  font-weight: 700;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .support-hero {
    margin-top: 20px;
    padding: 0 16px;
  }
  .contact-page .contact {
    margin: 10px 16px 50px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .policy-page nav.hero__nav {
    padding: 0 18px;
  }
  .policy {
    margin: 20px auto 60px;
  }
  .policy-section {
    padding: 16px;
  }
}
.nav__links {
  display: flex;
  gap: 50px;
}
.nav__links a {
  color: #fff;
  position: relative;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 30px;
}
.nav__links a.active,
.nav__links a:hover {
  border-bottom: 3px solid #8be22c;
}
.get-start-btn {
  background-color: #ccff00;
  padding: 14px 17px;
  border-radius: 6px;
  color: #1a237e;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  cursor: pointer;
  border: 0;
}

.footer {
  position: relative;
  background: var(--blue-dark);
  color: #d8e3ff;
  padding: 70px clamp(20px, 6vw, 80px) 40px;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: radial-gradient(
      circle at 10% 70%,
      rgba(255, 255, 255, 0.1),
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 60%,
      rgba(255, 255, 255, 0.15),
      transparent 45%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 255, 255, 0.08),
      transparent 50%
    );
  transform: skewY(-2deg);
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: center;
}

.footer__brand p {
  margin-top: 8px;
  color: #d8e3ff;
  font-size: 16px;
}

.footer__contact {
  display: grid;
  gap: 10px;
}

.contact-block .label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-block a {
  color: #fff;
  font-weight: 700;
}

.footer__stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__stores img {
  height: 46px;
  width: auto;
}

.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.footer__navrow {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 700;
}

.footer__navrow a {
  color: #d8e3ff;
}

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

.footer__socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer__socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9ff43c;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer__socials a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.8);
}

a.brand {
  margin-bottom: 0;
  line-height: 1;
}

@media screen and (max-width: 1024px){
     .contact-page nav.hero__nav, .policy-page nav.hero__nav, .terms-page nav.hero__nav {
        padding: 0px 20px !important;
    }
     nav.hero__nav {
    padding: 0px 20px;
  }
  .nav__links {
    display: flex;
    gap: 20px;
  }
  .player-img {
    position: absolute;
    bottom: 0;
    left: -100px;
    max-width: 400px;
  }
  img.green-vector {
    display: none;
  }
  .hero-wrapper > h1 {
    font-size: 50px;
  }
  .hero-sec {
    padding: 90px 0 0;
  }
  .hero-wrapper > span {
    font-size: 22px;
  }
  .mob-platform + img {
    max-width: 600px;
  }
  .hero-sec {
        min-height: 600px;
    }
}
@media screen and (max-width: 767px) {
    .player-img{
        display: none;
    }
    .mob-platform + img{
        width: 100%;
    }
    .nav__links a {
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        line-height: 19px;
    }
    a.brand img {
        margin-bottom: 0;
        line-height: 1;
        width: 120px;
    }
    .container {
        max-width: 1640px;
        margin: 0 auto;
        padding: 0 10px;
    }
    .moving-ball{
        display: none;
    }
}
@media screen and (max-width: 575px) {
    
    .footer__navrow > a {
    font-size: 14px;
}
    .footer__navrow {
    display: flex;
    gap: 12px;
}
    .footer__stores {
    justify-content: center;
}
   
    .mob-platform a img {
        width: 100%;
        height: 40px;
    }
    .nav__links {
        display: flex;
        gap: 6px;
    }
    .nav__links a {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 19px;
}
a.brand img {
    width: 100px;
}
}
@media screen and (max-width: 425px) {
        
    nav.hero__nav {
    padding: 0px 10px !important;
}
a.brand img {
    width: 80px;
}
}


.short-text {
  display: none;
}

/* Mobile view */
@media screen and (max-width: 768px) {
  .full-text {
    display: none;
  }

  .short-text {
    display: inline;
  }
}

