@include font-face("Montserrat", "./fonts/Montserrat-Bold.ttf", 700);
* {
  box-sizing: border-box;
}
:root {
  --gold: #f3cf55;
  --gold-light: #f7de00;
  --gold-dark: #b0891a;
  --gold-gradient: linear-gradient(180deg, #f3cf55 0%, #ebdb00 100%);
  --btn-green: linear-gradient(180deg, #2e7d32 0%, #1b5e20 100%);
  --border-green: 1px solid #2a7d3e;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  color: #fff;
  background: #041f0d;
}
p,
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
section.toggle-mobile,
.ft_mobile,
.promo-box__amount_mob,
.header__wc.mobile{
  display: none;
}
button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===== PAGE — full-width, grass background ===== */
.page {
  width: 100%;
  background: url(./images/desk_bg.webp) no-repeat center top / cover;
  min-height: 100vh;
}

/* ===== CENTERED CONTENT WRAPPER ===== */
.wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  width: 100%;
  background: url(./images/header_bg.webp) no-repeat center center / cover;
  height: 90px;
  display: flex;
  align-items: center;
  padding: 6px;
}
.header__inner {
  width: 100%;
  height: calc(100% - 2px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #023208;
  border: 2px solid #f3cf55;
  border-radius: 12px;
  padding: 3px 30px;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 8px 0;
}
.header__logo {
  height: 100%;
  width: auto;
}
.header__wc {
  height: 52px;
  width: auto;
}
.header__divider {
  width: 2px;
  height: 36px;
  background: #3a6e46;
  border-radius: 2px;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__icon {
  height: 36px;
  width: auto;
}
.header__text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
.header__text strong {
  font-size: 15px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.header__text span {
  font-size: 12px;
  color: #bbb;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  background: url(./images/hero_bg.webp) no-repeat center center / cover;
}

/* Players — anchored to hero edges, independent of wrap */
.hero__trophy {
  position: absolute;
  left: 4%;
  bottom: -20px;
  height: 95%;
  width: auto;
  z-index: 2;
}
.hero__mbappe {
  position: absolute;
  left: 11%;
  bottom: 0;
  height: 100%;
  width: auto;
  z-index: 1;
}
.hero__messi {
  position: absolute;
  right: 0%;
  bottom: 0;
  height: 100%;
  width: auto;
  z-index: 2;
}

/* Center content sits above players */
.hero__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.hero__title_wrapper {
  position: relative;
}
.flare_1 {
  position: absolute;
  top: 1px;
  left: 11.3%;
  width: 24px;
  height: 60px;
  animation: flarePulse 3s ease-in-out infinite;
}
.flare_2 {
  position: absolute;
  top: 15%;
  right: 22.3%;
  width: 24px;
  height: 60px;
  animation: flarePulse 3s ease-in-out infinite;
}
.flare_3 {
  position: absolute;
  bottom: -25%;
  left: 38%;
  width: 24px;
  height: 60px;
  transform: rotate(90deg);
  animation: flarePulse 3s ease-in-out infinite;
}
.hero__title {
  font-family: "Montserrat", sans-serif;
  padding: 0 15px;
  font-size: 90px;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 2px;
  color: transparent;
  background-image: linear-gradient(180deg, #fff44f 0%, #ffd700 45%, #ffbd04 100%);
  -webkit-background-clip: text;
  background-clip: text;
  animation:
    fadeDown 0.7s ease both,
    titleGlow 3s ease-in-out 0.7s infinite;
}
.hero__subtitle {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero__btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 460px;
  padding: 10px 12px 10px 12%;
  background: var(--gold-gradient);
  border-radius: 50px;
  margin-top: 4px;
  animation:
    fadeUp 0.7s ease 0.4s both,
    btnPulse 2.5s ease-in-out 1.2s infinite;
}
/* Shine sweep across button */
.hero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  border-radius: 50px;
  animation: btnShine 3.5s ease-in-out 1.5s infinite;
  pointer-events: none;
}
.hero__btn:hover {
  opacity: 0.92;
}
.hero__btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.hero__btn-main {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 4px rgba(39, 39, 39, 1);
  letter-spacing: 1px;
}
.hero__btn-sub {
  font-size: 13px;
  color: #6b3e00;
  font-weight: 500;
}
.hero__btn-arrow {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__btn-arrow img {
  width: 24px;
  height: auto;
  animation: arrowNudge 1.3s ease-in-out infinite;
}

/* ===== HERO KEYFRAMES ===== */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes titleGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 18px rgba(255, 180, 0, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 55px rgba(255, 210, 0, 1)) drop-shadow(0 0 90px rgba(255, 140, 0, 0.55));
  }
}
@keyframes btnPulse {
  0%,
  100% {
    box-shadow: 0 4px 24px rgba(243, 207, 85, 0.4);
  }
  50% {
    box-shadow:
      0 4px 55px rgba(243, 207, 85, 1),
      0 0 90px rgba(243, 207, 85, 0.35);
  }
}
@keyframes btnShine {
  0% {
    left: -80%;
  }
  60% {
    left: 160%;
  }
  100% {
    left: 160%;
  }
}
@keyframes arrowNudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

/* ===== CONTENTS WRAPPER — shared background ===== */
.contents-wrap {
  position: relative;
  margin-top: -20px;
  width: 100%;
  background: url(./images/contents_bg.webp) no-repeat center top / cover;
  z-index: 10;
}

/* ===== MID SECTION ===== */
.section-mid {
  width: 100%;
  padding: 0px 0;
}
.row-mid {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

/* --- Promo Box --- */
.promo-box {
  flex: 0 0 520px;
  background: url(./images/promo-box.png) no-repeat center center;
  background-size: 100% 100%;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding-left: 190px;
  backdrop-filter: shadow(0 0 8px rgba(0, 0, 0, 0.6));
}

/* .promo-box__badge {
  position: absolute;
  top: 24px;
  left: -26px;
  z-index: 5;
  background: #c0392b;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.3px;
  padding: 4px 0;
  width: 108px;
  transform: rotate(-45deg);
} */
.promo-box__content {
  position: relative;
  /* right: 0;
  top: 0;
  bottom: 0; */
  width: 100%;
  padding: 24px 14px 14px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.promo-box__label {
  font-size: 20px;
  font-weight: 700;
  color: #ddd;
}
.promo-box__amount {
  font-size: 40px;
  font-weight: 900;
  color: transparent;
  background-image: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
}
.promo-box__perks {
  display: flex;
  gap: 6px;
}
.perk {
  position: relative;
  z-index: 0;
  overflow: hidden;
  flex: 1;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 9px 4px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}

/* Spinning beam layer */
.perk::before {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  top: -30%;
  left: -30%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    #ffd700 50deg,
    #fff 80deg,
    #ffd700 110deg,
    transparent 160deg,
    transparent 360deg
  );
  animation: perkBeam 2.5s linear infinite;
  z-index: 1;
}

/* Inner cover — shows gradient only at border edges */
.perk::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: rgba(10, 28, 12, 0.85);
  border-radius: 6px;
  z-index: 2;
}

/* Stagger each perk so beams don't all sync */
.perk:nth-child(2)::before {
  animation-delay: -0.8s;
}
.perk:nth-child(3)::before {
  animation-delay: -1.6s;
}

/* Content sits above both layers */
.perk > * {
  position: relative;
  z-index: 3;
}

@keyframes perkBeam {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.perk img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.perk__value {
  font-size: 15px;
  font-weight: 900;
  color: var(--gold-light);
}
.perk__label {
  font-size: 10px;
  color: var(--gold-light);
  line-height: 1.3;
}
.promo-box__btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 14px 6px;
  margin-top: 8px;
  border-radius: 8px;
  background: var(--gold-gradient);
  color: #515151;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition:
    transform 0.1s,
    box-shadow 0.2s;
}
.promo-box__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: btnShine 3.5s ease-in-out infinite;
  pointer-events: none;
}
.promo-box__btn:hover {
  opacity: 0.9;
}

/* --- Links Box --- */
.links-box {
  flex: 1;
  background: url(./images/links_bg.webp) no-repeat center center / 100% 100%;
  border: 2px solid #f3cf55;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.5);
  height: 240px;
}
.promo-box {
  margin-top: -15px;
}
.links-box {
  margin-top: 0px;
}
.links-box__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gold-light);
  text-shadow: 0 0 8px rgba(255, 200, 2, 0.35);
}
.links-box__title img {
  width: 22px;
  height: 22px;
}

.link-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.link-col {
  border: 2px solid var(--gold);
  border-radius: 10px;
  overflow: hidden;
  /* padding: 14px 10px; */
  padding-bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  animation: colFadeUp 0.5s ease both;
}
.link-col:nth-child(1) {
  animation-delay: 0s;
}
.link-col:nth-child(2) {
  animation-delay: 0.1s;
}
.link-col:nth-child(3) {
  animation-delay: 0.2s;
}
.link-col:nth-child(4) {
  animation-delay: 0.3s;
}
.link-col:hover {
  transform: translateY(-4px);
  border-color: #f3cf55;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.5),
    0 0 18px rgba(243, 207, 85, 0.25);
}
@keyframes colFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.link-col__header {
  width: 100%;
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid #f3cf55;
  /* border-radius: 6px; */
  text-shadow: 0 0 8px rgba(243, 207, 85, 0.4);
  background: linear-gradient(0deg, #006500, #00cd00);
}
.link-col__header .gold {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(243, 207, 85, 0.6);
}
.link-col__domain {
  font-size: 15px;
  font-weight: 700;
  word-break: break-all;
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
  animation: domainPulse 3.5s ease-in-out infinite;
}
@keyframes domainPulse {
  0%,
  100% {
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
  }
  50% {
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.7);
  }
}

/* ===== SHARED BUTTONS ===== */
.btn-copy {
  position: relative;
  overflow: hidden;
  width: 85%;
  margin: 0 auto;
  padding: 9px 6px;
  border-radius: 6px;
  background: var(--gold-gradient);
  color: #515151;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition:
    transform 0.1s,
    box-shadow 0.2s;
}
/* Shine sweep on COPY button */
.btn-copy::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: btnShine 3.5s ease-in-out infinite;
  pointer-events: none;
}
.btn-copy:hover {
  box-shadow:
    0 0 14px rgba(243, 207, 85, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-copy:active {
  transform: scale(0.97);
}
.btn-copy img {
  width: 16px;
  height: 16px;
}

.btn-access {
  position: relative;
  overflow: hidden;
  width: 85%;
  margin: 0 auto;
  padding: 9px 6px;
  border-radius: 6px;
  background: var(--btn-green);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid #4caf50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: opacity 0.1s;
}
.btn-access:hover {
  opacity: 0.9;
}
.btn-access img {
  width: 16px;
  height: 16px;
}

/* ===== MATCHES SECTION ===== */
.section-matches {
  width: 100%;
  padding: 15px 30px;
}
.section-matches .wrap {
  max-width: 1500px;
  background: url(./images/matches_bg.webp) no-repeat center center / cover;
  border: 2px solid #f3cf55;
  border-radius: 12px;
  padding: 10px 5px 5px 10px;
}
.matches-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  text-shadow: 0 0 8px rgba(255, 200, 2, 0.4);
  color: var(--gold-light);
}
.matchSwiper {
  width: 100%;
  padding-bottom: 16px; /* space for pagination dots */
}
.matchSwiper .swiper-slide {
  height: auto;
}
.section-matches .swiper-pagination {
  top: auto;
  bottom: 0px;
}
.section-matches .swiper-pagination-bullet-active {
  background: #2ecc71;
  box-shadow: 0 0 5px #2ecc71;
}
.no-matches {
  text-align: center;
  padding: 30px;
  color: #888;
}

/* Match card */
.match-card {
  background: linear-gradient(180deg, #0a2e12 0%, #062010 100%);
  border: 1px solid #2a7d3e;
  border-radius: 10px;
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* 3-column: [team] [mid] [team] */
.match-card__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

/* Left team: flag + name, right-aligned */
.match-card__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.match-card__flag {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.match-card__name {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  max-width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Center: time + VS */
.match-card__mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
}
.match-card__time {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.match-card__vs {
  font-size: 42px;
  font-weight: 900;
  color: #ffd700;
  line-height: 1;
  text-shadow: 0 0 14px rgba(255, 215, 0, 0.5);
  font-style: italic;
}
/* Hide countdown on desktop — clean layout */
.match-card__countdown {
  display: none;
}

.match-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 70%;
  min-width: 250px;
  margin: 0 auto;
  padding: 5px 15px;
  background: linear-gradient(180deg, #03c016 0%, #1fbd3a 30%, #00c914 45%, #00c914 60%, #01830e 100%);
  border-radius: 15px;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: 2px solid #c0c0c0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  transition: opacity 0.15s;
}
.match-card__btn .btn-arrow {
  color: #ffd700;
  font-size: 16px;
}
.match-card__btn:hover {
  opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
  width: 100%;
  padding: 10px 0 14px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr;
  gap: 10px;
  align-items: center;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(2, 30, 10, 0.6);
  border: 2px solid #f3cf55;
  border-radius: 10px;
  padding: 12px 16px;
  height: 100%;
}
.footer__col--brand {
  align-items: center;
  text-align: center;
  flex-direction: row;
}
.footer__heading {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.footer__partners {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__clubs {
  width: auto;
  max-height: 44px;
}
.footer__security {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__pagcor {
  height: 36px;
  width: auto;
}
.footer__verified {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
  line-height: 1.3;
}
.footer__verified img {
  width: 24px;
  height: auto;
}
.footer__brand-logo {
  height: 40px;
  width: auto;
}
.footer__brand-text {
  font-size: 10px;
  color: #ffffff;
  line-height: 1.5;
}
.footer__support {
  display: flex;
  align-items: center;
  gap: 0px;
}
.footer__support-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.15s;
}
.footer__support-item:hover {
  color: var(--gold);
}
.footer__support-item img {
  width: auto;
  height: 30px;
}

@media (max-width: 1500px) {
  .hero__trophy {
    left: -8%;
  }
  .hero__mbappe {
    left: -3%;
  }
  .hero__messi {
    right: -10%;
  }
}
@media (max-width: 1200px) {
  .header {
    padding-bottom: 0;
    height: auto;
  }
  .row-mid {
    flex-direction: column;
  }
  .promo-box {
    flex: 1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .hero__title {
    font-size: 60px;
  }
  .match-card {
    padding: 7px;
  }
  .match-card__teams {
    gap: 6px;
  }
  .match-card__flag {
    width: 40px;
    height: 40px;
  }
  .match-card__vs {
    font-size: 16px;
  }
  .match-card__btn {
    width: 85%;
    min-width: unset;
    padding: 4px 0;
  }
  .match-card__name,
  .match-card__time {
    font-size: 11px;
  }
}

@media (max-width: 1024px) {
  section.hero {
    display: none;
  }
  section.toggle-mobile {
    position: relative;
    display: block;
  }
  .hero_contents_mob {
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: auto;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding-bottom: 10px;
  }
  .hero_contents_mob img {
    width: 70%;
  }
  .hero__btn {
    width: 300px;
    max-width: 90%;
    padding: 0px 12px 0px 12%;
  }
  .hero__btn-main {
    font-size: 20px;
  }
  .contents-wrap {
    margin-top: 0;
  }
  .links-box,
  .section-matches .wrap {
    border: 2px solid #00873b;
  }
  .match-card {
    border: 1px solid #f3cf55;
  }
}
@media (max-width: 768px) {
  .wrap.row-mid,
  .section-matches,
  .wrap.footer__inner {
    padding: 7px;
  }
  .link-cols,
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .header__inner {
    padding: 3px 6px;
  }
  .header__left {
    position: relative;
    gap: 8px;
    padding: 5px;
  }
  /*.header__left::after {*/
  /*  content: "";*/
  /*  position: absolute;*/
  /*  top: 0;*/
  /*  right: -5%;*/
  /*  width: 1px;*/
  /*  height: 90%;*/
  /*  transform: translateY(5%);*/
  /*  background: #f3ce5596;*/
  /*  border-radius: 2px;*/
  /*}*/
  .header__right {
    padding-right: 2%;
  }
  /*.header__divider {*/
  /*  display: none;*/
  /*}*/
  .header__logo,
  .header__wc {
    height: 35px;
  }
  .header__wc  {
      display: none;
  }
  .header__wc.mobile {
      display: block;
  }
  .link-col {
    border-width: 1px;
  }
  .wrap.footer__inner {
    display: none;
  }
  .ft_mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
  }
  .ft_mobile__partners,
  .ft_mobile__support {
    width: 100%;
    display: flex;
    gap: 12px;
    background: rgba(2, 30, 10, 0.6);
    border: 1px solid #00873b;
    border-radius: 10px;
    padding: 10px 0px;
    height: 100%;
  }
  .ft_mobile .footer__col {
    border: none;
    background: none;
    position: relative;
  }
  .ft_mobile .footer__col.has-border::before {
    content: "";
    position: absolute;
    top: 0px;
    right: -3%;
    width: 1px;
    height: 100%;
    background: #f3ce5594;
  }
  .footer__mobile-text {
    font-size: 12px;
    color: #fff;
    text-align: center;
  }
  .header__icon {
      height: 22px;
  }
  .header__text strong {
      font-size: 12px;
  }
  .header__text span{
      font-size: 10px;
  }

}
@media (max-width: 550px) {
  .footer__inner {
    grid-template-columns: repeat(1, 1fr);
  }
  .btn-copy,
  .btn-access {
    padding: 7px 5px;
  }

  .promo-box {
    min-height: 200px;
    padding-left: 25%;
    /* background: url(./images/links_bg.webp) no-repeat center center / 100% 100%;
    border: 2px solid #00873b; */
  }
  .promo-box__btn {
    padding: 10px 0;
    font-size: 13px;
  }
  .perk {
    background: rgba(0, 0, 0, 0.75);
  }
  .perk img {
    width: 20px;
    height: 20px;
  }
  .promo-box__content {
    width: 100%;
    padding-top: 25px;
  }
  .promo-box__header {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 2px;
    white-space: nowrap;
  }
  .promo-box__amount {
    display: none;
  }
  .promo-box__label {
    font-size: 16px;
  }
  .promo-box__amount_mob {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: transparent;
    background-image: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    margin-left: 5px;
  }

  .footer__pagcor {
    height: 25px;
    width: auto;
  }
}

@keyframes flarePulse {
  0%,
  100% {
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 1));
  }
}
