



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {

  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  font-family: "Oswald", serif;
  font-weight: 400;
}

a {
  text-decoration: none;
}
button 
{
  border: none;
}
.back-btn 
{
  color: #000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.2rem;

} 
.back-btn svg 
{
  width: 2rem;
  height: 2rem;
}

/* preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F1471D;
  background: radial-gradient(circle,#F1471D,#F68712);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-container {
  text-align: center;
}

.loader-text {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  animation: textAnimation 2s infinite;
}

.loader-text span {
  color: #fdd835;
}

@keyframes textAnimation {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
}
.slide_game 
{
  margin: 0.8rem 0;
}
.edit_profile 
{
  background: #8A70FF;
  color: white;
  width: max-content;
  padding: 0.5rem 1rem;
  border: 1px solid white;
  border-radius: 8px;
  margin: 0 auto;
}
/* preloader */

.swiper-pagination-bullet {
  background-color: black; 
  opacity: 1;
  position: relative; 
  bottom: -1rem;
}

.swiper-pagination-bullet-active {
  background-color: #ce0303; 
  transform: scale(1.5); 
}


.swiper-pagination-bullet:hover {
  background-color: #fff;
  cursor: pointer; 
}
html {
  font-size: 16px;

}
.container 
{
  padding: 0 1.5rem;
}


header {
  display: flex;
  align-items: center;
  background: #ce0303;
  padding: 1rem 1.5rem;
  justify-content: space-between;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.header h2 
{
  text-transform: uppercase;
  color: #ce0303;
}
.mobile_layout {
  position: relative;
  width: 100%;
  max-width: 500px;
  width: 100%;
  margin: 0 auto 5rem;
  height: 100%;
  overflow: hidden;
}

header .logo a {
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
}

header .logo a span {
  color: yellow;
}

.card {
  background: linear-gradient(red, orange);
  min-height: 215px;
  padding: 1rem;
  color: #fff;
  text-align: center;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.secondary-btn 
{
  background: linear-gradient(red, orange);
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  color: #fff;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.secondary-btn:hover 
{
  background: linear-gradient(orange, red);
} 

.card .primary_btn 
{
  margin-top: 1rem;
  display: block;
  padding:0.5rem 1rem;
  font-size: 1rem;
}
.card img 
{
  width: 150px;
  display: block;
}
.featureslider {
  margin-top: 2rem;
}

.featurecard_slider .card 
{
  min-height: 200px !important;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #ce0303;
}

.primary_btn {
  background: white;
  padding: 0.6rem 2rem;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 400;
  color: red;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.primary_btn:hover 
{
  border: 2px solid white;
  color: white;
  background: transparent;
}
.more-btn 
{
  background: #ce0303;
  padding:1rem 2rem;
  border-radius: 10px;
  border: 2px solid white;
  color: #fff;
  text-align: center;
  margin: 2rem auto;
  display: inline-block;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;

}
.more-btn:hover 
{
  background: #000;
} 
.title {
  font-size: clamp(1.2rem, 5vw, 1.6rem);
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 5px solid #8A70FF;
  background: #eee;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: #8A70FF;
}

.event_card {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  justify-content: space-between;
}

.event_card img {
  width: 150px;
}

.gameCard {
  position: relative;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

.gameCard::after
{
  position: absolute;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.57) 30% , transparent 50%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.gameCard img {
  width: 100%;
  border-radius: 15px;
  display: block;
  height: 200px;
  object-fit: cover;
}

.gameCard .game_name {
  position: absolute;
  text-align: center;
  padding: 0.5rem 0rem;
  bottom: 0.5rem;
  z-index: 5;
  left: 1rem;
}


.gameCard .game_name h3 {
  text-decoration: none;
  color: white;
  margin-bottom: 0;
  font-weight: 400;

}

.category_games {
  min-height: 100vh;
  height: 100%;
}

.tournament_game 
{
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.tournament_game::after
{
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(rgba(10, 10, 10, 0.596),rgb(22, 22, 22));
  filter: blur(1.5rem);
} 

.tournament_game img 
{
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
}

.tournament_game .game_name  
{
  position: absolute;
  bottom: 1rem;
  left: 2rem;
  z-index: 1;
  color: yellow;
}

.gamewrapper 
{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.category_game 
{
  position: relative;
  width: 30%;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.category_game img 
{
  width: 100%;
  border-radius: 15px;
  display: block;
}

.category_game .game_name 
{
  width: 100%;
  background: #fff;
  padding: 0.5rem 0.2rem;
  backdrop-filter: blur(2rem);
  border-top: 1px solid #fff2;
  border-radius:0 0 15px 15px;
}

.category_game .game_name h3
{
  color: black;
  font-size: 1rem;
  text-align: center;
  font-weight: 400;
}

.allgames 
{
  margin-bottom: 2rem;
}

/* navbar */



.nav 
{
  position:fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding:0.5rem 1.5rem;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-item 
{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  font-weight: 400;
}


.nav-item.active,
.nav-item:hover {
color: #8A70FF; 
}

.nav-item  .nav-icon 
{
 font-size: 1.6rem;
}

.view_leaderboard
{
  text-align: center;
  width: 80%;
  margin: 2rem auto;
}

.view_leaderboard .more-btn
{
  width: 100% !important;
}

/* tabs */

.tab-container {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  padding: 0 1.5rem;
}

.tabs {
  display: flex;
}

.tab {
  flex: 1;
  padding: 10px 20px;
  text-align: center;
  cursor: pointer;
  background: #ddd;
  border-bottom: none;
  transition: background 0.3s;
  margin-top: 1rem;
}

.tab.active {
  background: #ce0303;
  color: white;
  font-weight: bold;
}

/* Tab content styles */
.tab-content {
  padding: 1rem 0;
  display: none;
}

.tab-content.active {
  display: block;
}


/* menu */



/* Fullscreen Popup */
.fullscreen-popup {
  position: fixed;
  top: 0; 
  left: 100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.9); /* Semi-transparent black */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.5s ease-out;
  backdrop-filter: blur(1rem);
}

/* Active State */
.fullscreen-popup.active {
 left: 0;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: #ce0303;
  background: none;
  border: none;
  cursor: pointer;
}

#number 
{
  color: #ce0303;
}

/* Menu Items */
.menu-items {
  list-style: none;
  padding: 1.5rem;
  text-align: left;
}

.menu-items li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.01); 
  display: block;
}

.menu-items a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 300;
  transition: color 0.3s;
  padding: 0.5rem 0;
  display: block;
  
}

.menu-items a span 
{
  color: #ce0303;
  margin-right: 0.5rem;
  font-size: 1.6rem;
}

.menu-items a:hover {
  color: #007BFF;
}


/* privacy and terms and conditon */

main {
  padding: 20px;
}

.policy-section, .terms-section {
  background-color: #fff;
}

.policy-section h2, .terms-section h2 {
  color: #ce0303;
  margin-bottom: 0.5rem;
}

.policy-section h3, .terms-section h3 {
  margin: 10px 0;
  color: #8A70FF;
  font-weight: 500;
  font-size: 18px;
}
  
.policy-section p, .terms-section p 
{
  font-weight: 400;
  text-align: justify;
}

/* responsive */



/* footer */
footer 
{
 position: relative;
 background: #000;
 color: #fff;
 padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-left p {
  font-size: 16px;
  margin: 0;
  font-weight: 400;
}

.footer-center .quick-links 
{
  display: flex;
  gap: 2rem;
}

.footer-center .quick-links  a 
{
  color: #fdd835;
  transition: all 0.5s ease-in-out;
}
.footer-center .quick-links  a:hover 
{
  color: #fff;
} 

.footer-right ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.footer-right ul li {
  margin: 0 10px;
}

.footer-right ul li a {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-right ul li a:hover 
{
  color: #fdd835;
}
/* footer */





/* desktop */
@media(min-width:768px)
{

  .card {
    min-height: auto;
    padding: 2rem;
  }
  .d-md-none 
  {
    display: none;
  }
  .card .primary_btn  
  {
    padding: 0.8rem 2rem;
    font-size: 1.4rem;
  }
  .card .card_content h3 
  {
    font-size: 3rem; 
  }

  .login_form img {
    width: auto;
}
.login_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: auto;
  width: 500px;
  margin: 5rem auto 0;
  box-shadow: 0 5px 15px  rgba(0,0,0,0.1);
  border-radius: 20px;
}
  .podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 6rem;
    margin-bottom: 0;
    margin: 5rem auto;
}

.leaderboard {
  padding: 20px;
  margin-top: 20px;
  width: 90%;
  margin: 0 auto 3rem;
  max-width: 800px;
}

.avatar {
  width: 150px;
  height: 150px;

}
footer 
{
  display: block;
}

.faq-question 
{
  font-size: 20px;
}

.faq-item.active .faq-answer {
  font-size: 20px;
  font-weight: 400;
}

.category {
  padding: 10px 40px;
  border-radius: 30px;
  font-size: 16px;
}

.time {
  font-size: 1.2rem;
}
.tournament_card .card_info h2 {
  font-size: 2rem;
}
.join_now span 
{
  font-size: 1.4rem;
}
  .card .card_content p 
  {
    font-size: 1.4rem;
  }

  .nav-item {
    flex-direction: row;
    gap: 0.5rem;
    color: #fff;
    line-height: 0;
    padding: 0.5rem 0.8rem;
}
.nav-item:hover , .nav-item.active {
    color: #fdd835;
} 
.view_leaderboard {
  width: max-content;
}

.tab-container {
  max-width: 80%;
}

.tab-content.active {
  gap: 2rem;
  display: flex;
  margin: 2rem 0;
}

.card_content img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.tournament_game-banner {
  max-width: 1280px;
  margin: 0 auto;
}

.tournament_game-banner img {
  width: 100%;
}

.tournament_card {
  width: 30%;
}

.card_content .card_info {
  padding: 1.5rem;
}

.card_content {
  gap: 0;
  flex-direction: column;
}

.tabs {
  font-size: 2rem;
}

.policy-section, .terms-section {
  max-width: 900px;
  margin: 3rem auto;
  width: 100%;
}

main {
  padding: 20px;
  min-height: 100vh;
}

#tournament_banner {
  padding: 4rem 0;
}

.tournament_banner a img 
  {
    height: 400px;
    width: 100%;
  }  
.pricing_plan-inner {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  max-width: 1000px;
  gap: 3rem;
  margin: 4rem auto;
}

.mobile_layout {
  margin: 0 auto 0;
}

.pricing_plan {
  padding: 4rem 1rem 2rem;
  min-height: 100vh;
}

.plan-card .price {
  position: relative;
  right: 0;
  top: 0;
  left: 2rem;
  transform: translateY(0);
}

.pricing_title 
{
  font-size: 3rem;
}

.pricing_plan_header p 
{
  font-size: 2rem;
}

.plan-card::after {
  width: 241px;
  height: 148px;
}

.plan-name {
  font-size: 2rem;
}

.plan-description {
  font-size: 1.4rem;
}

.faq_header .section_title {
  font-size: 3rem;
}
.faq_header p 
{
  font-size: 2rem;
}
.faq-container {
  width: 90%;
  max-width: 900px;
  margin: 3rem auto 5rem;
  min-height: 100vh;
}

.support-form {
  max-width: 800px;
  margin: 3rem auto;
}
.about_hero  
{
  padding: 10rem 0;
}
.about_hero h1 , .hero h1
{
  font-size: clamp(3rem,5vw,5rem);
}
.about_hero p , .hero p
{
  font-size: clamp(1.6rem,5vw,2rem);
}
.about_hero .primary_btn {
  margin: 2rem 0;
  line-height: 1.8;
  font-size: 1.6rem;
}
.hero::after {
  bottom: -60px;
  height: 100px;
  transform: skewY(360deg);
}
.section-title {
  font-size: 4rem;
}
.container {
  max-width: 100%;
}

.support-section
{
 position: relative;
 box-shadow: none;
 padding: 5rem 0;
}

.cta {
  background: #4a148c;
  color: white;
  text-align: center;
  padding: 7rem 1rem;
  font-size: 2rem;
}

.support-section h2 {
  font-size: 3rem;
  text-align: center;
}

.button {
  padding: 0.8rem 2rem;
  border-radius: 58px;
  font-size: 1.6rem;
}

.contact-info {
  margin: 0;
  background: #ddd;
  padding: 5rem 0;
  font-size: 2rem;
  text-align: center;
}
.support-form input, .support-form textarea 
{
  font-size: 1.2rem;
}

.support-section p {
  font-size: 1.6rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.price-amount {
  font-size: 2rem;
}

.secondary-btn.desktop {
  grid-column: span 3;
  justify-self: center;
  align-self: center;
  font-size: 1.6rem;
  font-weight: 400;
}

.gamewrapper
{
  justify-content: center;
  flex-wrap: wrap;
}

.category_game {

  width: 190px;
}

  .card img 
  {
    width: 250px;
  }
  .event_card {
    padding: 2rem;
    text-align: center;
    flex-direction: column-reverse;
    justify-content: center;
}
.desktopnav 
{
  position: relative;
  background: none;
  justify-content: center;
  box-shadow: none;
  padding: 0;
  width: auto;
  border: none;
}
.mobilenav 
{
  display: none;
}
.tournament_game .game_name h3 
{
  font-size: 2rem;
}
.tournament_game img {
  height: 450px;
}
.event_card .content h3
{
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.event_card .content p
{
  font-size: 1.6rem;
}
  .mobile_layout
  {
    width: 100%;
    max-width: 800px;
  }
}

@media(min-width:500px)
{
  .mobile_layout
  {
    width: 100%;
    max-width: 100%;
  }
  
}



/* mobile */

@media(max-width:1280px)
{
  .desktopnav {
    gap: 0.5rem;
}
}

@media(max-width:768px)
{
  .desktopnav , footer 
  {
    display: none;
  }
  .d-sm-none 
  {
    display: none;
  }
}
@media(max-width:450px)
{
  .more-btn {
      padding: 0.8rem 2rem;
      margin: 1rem auto;
  }
  .card_content {
      gap: 1rem;
  }
  
}

@media(max-width:400px)
{
  .gamewrapper {
      gap: 0.5rem;
  }
  .event_card {
      padding: 1rem;
  }
  .card .primary_btn {
      padding: 0.5rem 0rem;
      font-size: 0.9rem;
  }
  .card {
      min-height: 190px;
      padding: 0.8rem;
  }
  .card_content {
      gap: 1rem;
      padding: 1rem;
  }
  .card_content img {
      width: 100px;
      height: 100px;
      border-radius: 15px;
  }
  .join_now {
      align-items: flex-start;
      flex-direction: column;
      justify-content: flex-start;
  }
  .card_content .secondary-btn {
      padding: 0.6rem 1.5rem;
      margin: 0.5rem 0;
      width: 100%;
      text-align: center;
  }
  .tournament_card .card_info h2 {
      font-size: 1rem;
  }
  .container {
      padding: 0 1rem;
  }
  .game_info {
      padding: 0 1.5rem;
  }
  .game_info .content h2 
  {
      font-size: 1.2rem;
  }
  .game_info .secondary-btn 
  {
      padding: 0.6rem 1.6rem;
  }
  .plan-card .price {

  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}
}