/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

@font-face {
  font-family: 'Work Sans';
  src: url('/fontsISKMS/work-sans-variablefontISKMS.woff2')
    format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  background-image: url('/imagesISKMS/hero-bg-footballISKMS.webp');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-color: #000;
}

@media (max-width: 767px) {
  body {
    background-image: url('/imagesISKMS/hero-bg-footballI-mbSKMS.webp');
    background-position: top center;
    background-size: cover;
  }
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.headerISKMS {
  background: rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 10;
}

.header-innerISKMS {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logoISKMS {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 20;
}

.logo-imgISKMS {
  width: 32px;
  height: 32px;
}

.logo-textISKMS {
  color: #9dff00;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-listISKMS {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-linkISKMS {
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
}

.nav-linkISKMS::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #9dff00;
  transition: width 0.25s ease;
}

.nav-linkISKMS:hover::after {
  width: 100%;
}

.burgerISKMS {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 30;
}

.burgerISKMS span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.burgerISKMS span:nth-child(1) {
  top: 0;
}

.burgerISKMS span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burgerISKMS span:nth-child(3) {
  bottom: 0;
}

.burgerISKMS.open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.burgerISKMS.open span:nth-child(2) {
  opacity: 0;
}

.burgerISKMS.open span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mobile-menuISKMS {
  position: fixed;
  inset: 0;
  background: #000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 20;
  padding-top: 90px;
}

.mobile-menuISKMS.open {
  transform: translateX(0);
}

.mobile-navISKMS {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-navISKMS li {
  margin-bottom: 24px;
}

.mobile-linkISKMS {
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 900px) {
  .navISKMS {
    display: none;
  }

  .burgerISKMS {
    display: block;
  }

  .logo-textISKMS {
    font-size: 12px;
  }
}

/* hero */

.heroISKMS {
  position: relative;
  padding: 120px 0;
  background: transparent;
}

.hero-innerISKMS {
  display: flex;
  justify-content: center;
}

.hero-boxISKMS {
  width: 100%;
  padding: 48px 40px 44px;
  border-radius: 20px;
  border: 1px solid var(--green, #9dff00);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 8px 16px rgba(254, 246, 0, 0.3);
  text-align: center;
}

.hero-titleISKMS {
  margin: 0 0 24px;
  color: var(--green, #9dff00);
  font-family: 'Work Sans', sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}

.hero-textISKMS {
  margin: 0 auto 36px;
  max-width: 820px;
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}

.hero-featuresISKMS {
  display: flex;
  justify-content: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-featureISKMS {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  white-space: nowrap;
}

.hero-iconISKMS {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .heroISKMS {
    padding: 20px 0;
  }

  .hero-boxISKMS {
    padding: 28px 18px 32px;
  }

  .hero-titleISKMS {
    font-size: 26px;
    line-height: 110%;
  }

  .hero-textISKMS {
    font-size: 14px;
    line-height: 120%;
    margin-bottom: 28px;
  }

  .hero-featuresISKMS {
    flex-direction: row;
    gap: 24px;
  }

  .hero-featureISKMS {
    font-size: 14px;
  }

  .hero-iconISKMS {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 767px) {
  .offersListISKMS {
    flex-direction: column;
  }

  .offerCardISKMS {
    flex: 1 1 100%;
  }

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

  .offerTextISKMS {
    border-right: none;
    border-bottom: 1px solid #9dff00;
  }
}

.offersISKMS {
  padding: 80px 0;
}

.offersTitleISKMS {
  margin-bottom: 48px;
  color: #fff;
  text-align: center;
  font-family: 'Work Sans';
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.offersListISKMS {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* CARD */
.offerCardISKMS {
  flex: 1 1 calc(33.333% - 16px);
  border-radius: 20px;
  border: 1px solid #9dff00;
  background: rgba(7, 7, 7, 0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.offerCardISKMS {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.offerCardISKMS:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 30px rgba(157, 255, 0, 0.25);
}

/* TOP */
.offerTopISKMS {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #9dff00;
}

.offerTextISKMS {
  padding: 25px 16px;
  border-right: 1px solid #9dff00;
  text-align: center;
  height: 152px;
}

.offerTextISKMS h2 {
  margin: 0 0 10px;
  color: #9dff00;
  font-family: 'Work Sans';
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 120%;
}

.offerTextISKMS h2 a {
  color: #9dff00;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-transform: inherit;
  text-decoration: none;
  display: inline-block;
}
.offerTextISKMS p {
  margin: 0;
  color: #fff;
  font-family: 'Work Sans';
  font-size: 12px;
  line-height: 120%;
}

.offerBrandISKMS {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 12px;
}

.offerBrandISKMS img {
  max-width: 110px;
  height: 40px;
  object-fit: contain;
}

.offerVotesISKMS {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-align: center;
  font-family: 'Work Sans';
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
}

.offerVotesISKMS img {
  width: 14.536px;
  height: 13.983px;
}

/* BOTTOM */
.offerBottomISKMS {
  padding: 24px;
}

.offerStatsISKMS {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #fff;
  font-family: 'Work Sans';
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.offerProgressISKMS {
  height: 6px;
  margin-bottom: 16px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    #00d6ee 0%,
    #00f65e 40.38%,
    #ff4400 88.46%
  );
}

.offerBtnISKMS {
  display: block;
  padding: 14px 0;
  border-radius: 30px;
  background: linear-gradient(90deg, #900 0%, #ff3624 100%);
  color: #fff;
  font-family: 'Work Sans';
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}

.offerBtnISKMS {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: repeating-linear-gradient(
      75deg,
      rgba(255, 255, 255, 0) 25%,
      rgba(255, 255, 255, 0.35) 26%,
      rgba(255, 255, 255, 0) 50%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(90deg, #900 0%, #ff3624 100%);
  animation: offerBtnShimmer 1s linear infinite;
}

.offerBtnISKMS:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 54, 36, 0.45);
}

.offerBtnISKMS:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(255, 54, 36, 0.35);
}

@keyframes offerBtnShimmer {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 500px 0, 0 0;
  }
}

/* TABLET */
@media (max-width: 1199px) {
  .offersListISKMS {
    flex-wrap: wrap;
  }

  .offerCardISKMS {
    flex: 1 1 calc(50% - 12px);
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .offersISKMS {
    padding: 0px 0;
  }
  .offersTitleISKMS {
    font-size: 20px;
  }

  .offerCardISKMS {
    flex: 1 1 calc(50% - 12px);
  }

  .offerTextISKMS,
  .offerBrandISKMS,
  .offerBottomISKMS {
    padding: 16px;
  }

  .offerTextISKMS h2 {
    font-size: 12px;
  }

  .offerTextISKMS p {
    font-size: 11px;
  }

  .offerStatsISKMS {
    font-size: 14px;
  }
}

.footerISKMS {
  padding: 80px 0 40px;
  background: #000;
}

.footer-innerISKMS {
  text-align: center;
}

.footer-logoISKMS {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-logoISKMS img {
  width: 32px;
  height: 32px;
}

.footer-logoISKMS span {
  color: #9dff00;
  font-family: 'Work Sans';
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-navISKMS ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.footer-navISKMS a {
  color: #fff;
  font-family: 'Work Sans';
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
}

.footer-sectionISKMS {
  margin: 0 auto 36px;
}

.footer-sectionISKMS h2 {
  margin-bottom: 16px;
  color: #9dff00;
  font-family: 'Work Sans';
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-sectionISKMS p {
  margin-bottom: 14px;
  color: #fff;
  font-family: 'Work Sans';
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.footer-logosISKMS {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 36px 0;
}

.footer-logosISKMS img {
  max-height: 36px;
  object-fit: contain;
}

.footer-copyISKMS {
  color: #fff;
  font-family: 'Work Sans';
  font-size: 14px;
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 767px) {
  .footer-navISKMS ul {
    gap: 16px;
  }

  .footer-sectionISKMS p {
    font-size: 14px;
  }

  .footer-logosISKMS img {
    max-height: 28px;
  }
}

.about-usISKMS {
  text-align: left;
  padding: 100px 0;
}

.about-usISKMS h1 {
  color: #fff;
  font-family: 'Work Sans';
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 30px */
  text-transform: uppercase;
}

.about-usISKMS h2 {
  color: #fff;
  font-family: 'Work Sans';
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 24px */
  text-transform: uppercase;
}

.about-usISKMS p,
ul li {
  color: #fff;
  font-family: 'Work Sans';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
}

.about-usinnerISKMS {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #9dff00;
  background: rgba(0, 0, 0, 0.6);

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-usISKMS p {
  color: #fff;
  font-family: 'Work Sans';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
}

@media (max-width: 767px) {
  .about-usISKMS h1 {
    font-size: 22px;
  }

  .about-usISKMS h2 {
    font-size: 16px;
  }

  .about-usISKMS p {
    font-size: 14px;
  }

  .about-usISKMS {
    padding: 40px 0;
  }
}

.terms {
  text-align: left;
  padding: 100px 0;
}

.terms h1 {
  color: #fff;
  font-family: 'Work Sans';
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 30px */
  text-transform: uppercase;
}

.terms h2 {
  color: #fff;
  font-family: 'Work Sans';
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 24px */
  text-transform: uppercase;
}

.terms p {
  color: #fff;
  font-family: 'Work Sans';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
}

.terms p {
  color: #fff;
  font-family: 'Work Sans';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
}

.terms-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 767px) {
  .terms h1 {
    font-size: 22px;
  }

  .terms h2 {
    font-size: 16px;
  }

  .terms p {
    font-size: 14px;
  }

  .terms {
    padding: 40px 0;
  }
}

.contactISKMS {
  padding: 100px 0;
}

.contact-innerISKMS {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-titleISKMS {
  max-width: 650px;
  margin-bottom: 32px;
  color: #fff;
  text-align: center;
  font-family: Tomorrow, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}

.contact-formISKMS {
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-formISKMS input,
.contact-formISKMS textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  color: #000;
}

.contact-formISKMS textarea {
  resize: none;
}

.contact-btnISKMS {
  margin-top: 10px;
  padding: 16px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #900 0%, #ff3624 100%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-btnISKMS:hover {
  opacity: 0.9;
}

.contact-successISKMS {
  margin-top: 16px;
  color: #9dff00;
  text-align: center;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 767px) {
  .contact-titleISKMS {
    font-size: 22px;
  }

  .contact-formISKMS input,
  .contact-formISKMS textarea {
    font-size: 14px;
  }
}

.age-overlayISKMS {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-popupISKMS {
  max-width: 540px;
  width: calc(100% - 40px);
  padding: 20px;
  background: #000;
  border-radius: 20px;
  text-align: center;
}

.age-popupISKMS h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: 'Tomorrow', sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 100%;
}

.age-popupISKMS p {
  margin: 0 0 20px;
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  line-height: 120%;
}

.age-btnISKMS {
  width: 100%;
  padding: 16px 20px;
  border-radius: 30px;
  background: linear-gradient(90deg, #900 0%, #ff3624 100%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.age-btnISKMS:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 54, 36, 0.4);
}

/* news */

.newsISKMS {
  padding: 50px 0;
}

.newsTitleISKMS {
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  font-family: 'Work Sans';
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.newsWrapISKMS {
  max-width: 100%;
}

.newsListISKMS {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.newsItemISKMS {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid #9dff00;
  background: rgba(7, 7, 7, 0.6);
  padding: 20px;
}

.newsTextISKMS {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsDateISKMS {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.newsItemISKMS h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.newsItemISKMS p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 140%;
}

.newsImgISKMS img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.newsLoadBtnISKMS {
  margin: 30px auto 0;
  display: block;
  padding: 14px 40px;
  border-radius: 30px;
  background: linear-gradient(90deg, #900 0%, #ff3624 100%);
  color: #fff;
  font-family: 'Work Sans';
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

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

  .newsTitleISKMS {
    font-size: 24px;
  }
}
