/* Banner */
.banner {
  padding-top: 140px;
}

.my-banner-img {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 560px;
}

.my-banner-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/home/banner.png") center / cover no-repeat;
  background-color: rgba(60, 55, 55, 0.798);
  background-blend-mode: multiply;
  z-index: -1;
  transition: transform 0.7s ease-in-out;
}

.my-banner-img:hover::before {
  transform: scale(1.1);
}

.banner-info h1 span {
  color: var(--primary);
  font-style: italic;
}

.banner-info p {
  color: var(--grey);
  font-size: 20px;
}

.banner-info {
  max-width: 900px;
  margin: 0 auto;
}

/* Feature */
.ft-card {
  padding: 20px;
  border: 1px solid rgba(84, 84, 84, 0.295);
  border-radius: 14px;
  background-color: rgba(50, 50, 50, 0.295);
  /* backdrop-filter: blur(8px); */
  /* -webkit-backdrop-filter: blur(8px); */
  transition: all 0.3s ease;
}

.ft-card i {
  color: var(--primary);
  font-size: 30px;
}

.ft-card p {
  color: var(--grey);
  font-size: 14px;
}

.ft-card:hover {
  background: linear-gradient(
    to bottom right,
    #fecaca56,
    /* red-200 */ #e9d5ff7a,
    /* purple-200 */ #fef08a60 /* yellow-200 */
  );
}

/* Category */
.category .hover-me {
  color: var(--primary);
  font-weight: 600;
  transition: transform 0.3s linear;
}

.category .hover-me:hover .span-element {
  transform: translateX(-5px);
}

.c-card {
  padding-left: 30px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.c-info {
  position: absolute;
  bottom: 1px;
}

.c-info p {
  transform: translateY(50px);
}

.c-card:hover .c-info p {
  transform: translateY(0);
}

.c-card:hover {
  background-color: rgba(1, 29, 7, 0.642);
}

.c-card h3 span {
  color: var(--primary);
}

.c-card-1 {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.c-card-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/home/cricket.png") center / cover no-repeat;
  background-color: rgba(60, 55, 55, 0.798);
  background-blend-mode: multiply;
  z-index: -1;
  /* transition: transform 0.7s ease-in-out; */
}

.c-card-2 {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.c-card-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/home/football.png") center / cover no-repeat;
  background-color: rgba(60, 55, 55, 0.798);
  background-blend-mode: multiply;
  z-index: -1;
  /* transition: transform 0.7s ease-in-out; */
}

.c-card-3 {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.c-card-3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/home/badmintoon.png") center / cover no-repeat;
  background-color: rgba(60, 55, 55, 0.798);
  background-blend-mode: multiply;
  z-index: -1;
  /* transition: transform 0.7s ease-in-out; */
}

.c-card-4 {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.c-card-4::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/home/tennis.png") center / cover no-repeat;
  background-color: rgba(60, 55, 55, 0.798);
  background-blend-mode: multiply;
  z-index: -1;
  /* transition: transform 0.7s ease-in-out; */
}


/* Rules */
.rules {
    background-color: var(--light-bg-green);
}

.rules  p {
    color: var(--grey);
}

.rules span  {
    color: var(--primary);
}

.rules i  {
    color: var(--primary);
}

.rules p i {
    font-size: 10px;
}

/* Players */
.player-card {
    border-radius: 14px;
    overflow: hidden;
}

.player-card img {
    width: 500px;
    height: 400px;
    object-fit: cover;
}

.player-card-body {
    background-color: var(--light-bg-green);
}

.player-card-body span:nth-child(1) {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
}

.player-card-body span:nth-child(3) {
    color: var(--grey);
}


/* Quiz Card */
.quiz-card {
    border: 1px solid var(--primary);
    padding-block: 80px;
    background-color: var(--light-bg-green);
    border-radius: 16px;
    position: relative;
}

.quiz-card p:nth-child(1) {
    color: var(--primary);
    background-color: #0a4c24ba;
    font-weight: 600;
    text-transform: uppercase;
    width: fit-content;
}

.quiz-card h2 {
    font-size: clamp(1.5rem,5vw,3rem);
    margin-bottom: 20px;
}

.quiz-card p:nth-child(3) {
    color: var(--grey);
    margin-bottom: 20px;
}

.quiz-card::before {
    content: "";
    width: 200px;
    height: 200px;
    background: url('../images/home/brain-removebg-preview.png') center / cover no-repeat;
    position: absolute;
    z-index: -1;
    right: 80px;
}


/* News */
.news-body p:nth-child(1) {
    color: var(--grey);
}

.news-body h3 {
    color: var(--primary);
}

.news-body p:nth-child(3) {
    color: var(--grey);
}

.swipe-btn button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid white;
    color: white;
    font-size: 25px;
    transition: all 0.3s linear;
}

.swipe-btn button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

