/* =====================================
======> HERO SEC 
===================================== */
.hero-sec {
  min-height: 90dvh;
  display: flex;
  background: var(--gradient-hero);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero-sec .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-col);
}
.hero-sec .style-tag {
  margin-bottom: 1rem;
}
.hero-sec .main-hd {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.hero-sec .main-hd em {
  font-style: Italic;
  color: var(--primary);
}
.hero-sec .main-p {
  color: var(--text-200);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.hero-sec .hero-btn {
  min-width: 300px;
}
.hero-sec .hero-btn i {
  margin-left: 1rem;
}

.hero-sec .style-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-size: 0.7rem;
}

.hero-sec .hero-rating-box {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.user-group {
  display: flex;
  align-items: center;
}

.user-group img,
.more-users {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 3px solid #1b1b1b;
  object-fit: cover;
  margin-left: -12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.user-group img:first-child {
  margin-left: 0;
}

.more-users {
  background: #3d3d42;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.hero-sec .hero-rating-box i.fa-star {
  font-size: 0.75rem;
  color: rgb(210, 124, 4);
}
.hero-sec .hero-rating-box p {
  font-size: 0.75rem;
  color: var(--text-300);
  margin: 0;
}

/* ====> HERO sec ani img col */
.hero-sec .ani-img-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: top;
}
.hero-sec .ani-img-col .hero-img {
  width: 100%;
  max-width: 520px;
  margin-top: -65px;
}

.hero-sec .ani-img-col .football-img {
  position: absolute;
  width: 100%;
  max-width: 5rem;
  bottom: 0rem;
  left: 10%;
  animation: aniFootBall 2s infinite linear;
}
@keyframes aniFootBall {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  10% {
    transform: translateY(-0.4rem) rotate(36deg);
  }

  20% {
    transform: translateY(0rem) rotate(72deg);
  }

  30% {
    transform: translateY(-1.8rem) rotate(108deg);
  }

  40% {
    transform: translateY(-2.8rem) rotate(144deg);
  }

  50% {
    transform: translateY(-3.8rem) rotate(180deg);
  }

  60% {
    transform: translateY(-4.8rem) rotate(216deg);
  }

  70% {
    transform: translateY(-6rem) rotate(252deg);
  }

  80% {
    transform: translateY(-4.4rem) rotate(288deg);
  }

  90% {
    transform: translateY(-2rem) rotate(324deg);
  }

  100% {
    transform: translateY(0) rotate(360deg);
  }
}

.hero-sec .ani-img-col .player-img {
  width: 100%;
  max-width: 413px;
}

@media (max-width: 800px) {
  .hero-sec .container {
    display: flex;
    flex-direction: column-reverse;
  }

  .hero-sec .main-hd {
    font-size: 1.5rem;
  }

  .hero-sec .main-p {
    font-size: 0.7rem;
  }
}

/* =====================================
======> WHY CHOOSE US SEC
===================================== */
.why-choose-sec .feature-card {
  position: relative;
  padding: 32px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.35s ease;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Red Glow */
.why-choose-sec .feature-card::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.18), transparent 65%);
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}

/* Border Gradient */
.why-choose-sec .feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 59, 48, 0.45),
    transparent 45%,
    rgba(229, 9, 20, 0.25)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* Hover */
.why-choose-sec .feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(229, 9, 20, 0.25);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.55),
    0 0 35px rgba(229, 9, 20, 0.15);
}

.why-choose-sec .feature-card:hover::before {
  opacity: 1;
}

/* Icon */
.why-choose-sec .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 59, 48, 0.18),
    rgba(229, 9, 20, 0.08)
  );
  border: 1px solid rgba(229, 9, 20, 0.18);
  margin-bottom: 24px;
}

.why-choose-sec .feature-icon i {
  font-size: 24px;
  color: #ff3b30;
}

/* Heading */
.why-choose-sec .feature-card h3 {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}

/* Paragraph */

.why-choose-sec .feature-card p {
  color: #9f9f9f;
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Small Glow on Icon */

.why-choose-sec .feature-card:hover .feature-icon {
  box-shadow: 0 0 20px #e5091433;
}

/* =====================================
======> KEY FEATURES SEC
===================================== */
.key-features-sec .featured-items-box {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.key-features-sec {
  background: linear-gradient(
    180deg,
    rgba(8, 0, 0, 1) 0%,
    rgba(66, 0, 4, 0.608) 47%,
    rgba(3, 0, 1, 1) 100%
  );
}

.key-features-sec .feature-item {
  padding: 0.5rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: var(--radious-sec);
  background: linear-gradient(
    180deg,
    rgba(25, 25, 25, 0.98),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(229, 9, 20, 0.35);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.45),
    0 0 25px rgba(229, 9, 20, 0.12);
  transition: 0.35s ease;
  cursor: pointer;
}

/* Icon */
.feature-icon {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(229, 9, 20, 0.18),
    rgba(229, 9, 20, 0.08)
  );
  border: 1px solid rgba(229, 9, 20, 0.28);
  transition: 0.35s;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, #ff3b30, #e50914);
  box-shadow: 0 0 18px rgba(229, 9, 20, 0.35);
}

.feature-icon i {
  font-size: 0.8rem;
  color: #ff3b30;
  transition: 0.35s;
}

.feature-item:hover .feature-icon i {
  color: #fff;
}

/* Content */
.feature-content {
  flex: 1;
}

.feature-content h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0;
}

.feature-content p {
  color: #9a9a9a;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-item:hover h4 {
  color: #fff;
}

.feature-item:hover p {
  color: #c6c6c6;
}

/* =====================================
======> PLAN ROW
===================================== */
.dim-blur-bg {
  background: var(--bg-100);
}

.plan-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-card);
}

.business-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: var(--radious-sec);
  background: linear-gradient(180deg, #111111 0%, #0c0c0c 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 1px rgba(229, 156, 9, 0.22),
    0 20px 45px rgba(0, 0, 0, 0.55),
    0 0 25px rgba(229, 145, 9, 0.15),
    0 0 80px rgba(229, 148, 9, 0.25);
  margin-bottom: 2rem;
}

/* Left */
.business-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* Icon */
.business-icon {
  width: 2.9rem;
  height: 2.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radious-sec);
  background: linear-gradient(
    180deg,
    rgba(229, 9, 20, 0.16),
    rgba(229, 9, 20, 0.08)
  );
  box-shadow:
    0 0 0 1px rgba(229, 156, 9, 0.22),
    0 20px 45px rgba(0, 0, 0, 0.55),
    0 0 25px rgba(229, 145, 9, 0.15),
    0 0 80px rgba(229, 148, 9, 0.25);
  border: 1px solid rgba(229, 9, 20, 0.18);
}

.business-icon i {
  color: #cc8304;
  font-size: 24px;
}

/* Text */
.business-content h3 {
  color: #f8cc5e;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.business-content p {
  color: #9d9d9d;
  font-size: 0.8rem;
  margin: 0;
}

.plan-row .style-list li.active {
  color: #f8cc5e;
  font-weight: 600;
}

.plan-row .style-list li.active span {
  background: #694c03c8;
}
.plan-row .style-list li.active span i {
  color: #f8cc5e;
}

/* Responsive */
@media (max-width: 800px) {
  .business-banner {
    width: 100%;
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .business-left {
    flex-direction: column;
  }

  .plan-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--gap-card);
  }
}

/* ===>  CARDS */
.pricing-card {
  padding: 2rem 1.8rem;
  border-radius: var(--radious-prim);
  border: 2px solid #bcbcbc3d;
  background: var(--gradient-card);
  position: relative;
}
.pricing-card.active {
  border: 2px solid #ffc229;
  box-shadow:
    0 0 0 1px rgba(229, 9, 20, 0.22),
    0 20px 45px rgba(0, 0, 0, 0.55),
    0 0 25px rgba(229, 9, 20, 0.15),
    0 0 80px rgba(229, 9, 20, 0.25);
}

/* Badge */
.pricing-card .plan-badge {
  position: absolute;
  left: 50%;
  top: -13px;
  transform: translateX(-50%);
  background: var(--prim-300);
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pricing-card .descount-badge {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  background: #ffc229;
  color: #090909;
  padding: 7px 10px;
  border-radius: var(--radious-sec);
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow:
    0 0 0 2px rgba(255, 215, 0, 0.4),
    0 10px 25px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(255, 193, 7, 0.55),
    0 0 55px rgba(255, 193, 7, 0.4),
    0 0 100px rgba(255, 215, 0, 0.3),
    inset 0 0 12px rgba(255, 235, 59, 0.15);
}

/* Title */
.pricing-card .plan-name {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 14px;
}

/* Price */
.pricing-card .plan-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.pricing-card .price {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-card .duration {
  color: #9c9c9c;
  font-size: 1.1rem;
  margin-bottom: 7px;
}

.pricing-card .btn-plan {
  background: #202122;
  color: var(--text-200);
  width: 100%;
  margin-top: 1rem;
  transition: var(--Etrns);
}

.pricing-card.active .btn-plan {
  background: var(--primary);
  color: var(--text-100);
}

.pricing-card .btn-plan:hover {
  background: var(--primary);
  color: var(--text-100);
}

@media (max-width: 800px) {
  .plan-row {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* =========> TIMER */
.timer {
  display: flex;
  gap: 0.9rem;
}
.timer .t-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.timer .t-box span {
  flex-shrink: 0;
}
.timer .t-box:not(:last-child)::after {
  content: ":";
  position: absolute;
  right: -0.5rem;
  top: 30%;
  transform: translateY(-50%);
  color: var(--text-100);
}
.timer .t-box span:first-child {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-100);
  padding: 0.5rem 0.3rem;
  min-width: 1.9rem;
  text-align: center;
  border-radius: 0.2rem;
  background: var(--primary);
}
.timer .t-box span:last-child {
  font-size: 0.6rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-100);
  padding-top: 0.2rem;
}

/* =====================================
======> ENTERTAINMENT-pass-sec
===================================== */
.entertainment-pass-sec .main-hd-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap-col);
}
.entertainment-pass-sec .action-btn-sm {
  display: none;
  justify-content: center;
}
@media (max-width: 800px) {
  .entertainment-pass-sec .main-hd-box {
    display: block;
  }
  .entertainment-pass-sec .main-hd-box > div:last-child {
    display: none;
  }
  .entertainment-pass-sec .action-btn-sm {
    display: flex;
  }
}

/* =====================================
======> REVIEW SEC
===================================== */
.review-card img {
  border-radius: var(--radious-prim);
}

/* =====================================
======> SWIPER SETTINGS
===================================== */
.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: auto;
  border-radius: var(--radious-prim);
  overflow: hidden;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================
======> FAQ SEC
===================================== */
#faq ul {
  margin: 0.5rem 0 0.5rem 1rem;
}
