/*====================================================
PLAYINEXCHANGE
Premium Bootstrap Landing Page
Version : 1.0
Author : ChatGPT
=====================================================*/

/***********************
GOOGLE FONT
************************/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

/***********************
ROOT VARIABLES
************************/

:root {
  --primary: #ffc107;
  --secondary: #ff9800;
  --dark: #070707;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --light: #ffffff;
  --gray: #9f9f9f;
  --border: rgba(255, 255, 255, 0.08);

  --gradient: linear-gradient(135deg, #ffcb05, #ff9800);

  --shadow: 0 15px 45px rgba(0, 0, 0, 0.35);

  --radius: 18px;

  --transition: 0.35s ease;
}

/**********************
RESET
**********************/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #050505;
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  outline: none;
  border: none;
}

section {
  padding: 100px 0;
  position: relative;
}

.container {
  max-width: 1320px;
}

/**********************
BACKGROUND
**********************/

body:before {
  content: "";

  position: fixed;

  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  background: radial-gradient(circle at top right, #ff980030, transparent 35%),
    radial-gradient(circle at bottom left, #ffc10720, transparent 30%), #070707;

  z-index: -2;
}

body:after {
  content: "";

  position: fixed;

  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  background-image: linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);

  background-size: 45px 45px;

  opacity: 0.25;

  z-index: -1;
}

/*************************
TYPOGRAPHY
*************************/

h1 {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  font-size: 48px;
  font-weight: 700;
}

h3 {
  font-size: 30px;
  font-weight: 700;
}

h4 {
  font-size: 24px;
  font-weight: 600;
}

p {
  color: #cfcfcf;
  margin-bottom: 18px;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  display: inline-block;

  padding: 8px 22px;

  background: rgba(255, 193, 7, 0.08);

  border: 1px solid rgba(255, 193, 7, 0.35);

  border-radius: 50px;

  color: #ffc107;

  font-weight: 600;

  margin-bottom: 18px;
}

.section-title h2 {
  margin-bottom: 18px;
}

.section-title p {
  max-width: 720px;
  margin: auto;
}

/****************************
BUTTONS
****************************/

.btn-main {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 38px;

  border-radius: 60px;

  font-weight: 700;

  background: var(--gradient);

  color: #000;

  transition: 0.35s;

  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.25);
}

.btn-main:hover {
  transform: translateY(-5px);

  box-shadow: 0 25px 60px rgba(255, 193, 7, 0.45);

  color: #000;
}

.btn-outline {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 38px;

  border: 2px solid #ffc107;

  border-radius: 60px;

  font-weight: 600;

  color: #ffc107;

  transition: 0.35s;
}

.btn-outline:hover {
  background: #ffc107;

  color: #000;
}

/***************************
HEADER
***************************/

header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 9999;

  transition: 0.4s;

  padding: 18px 0;
}

header.sticky {
  background: #070707;

  padding: 12px 0;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

/*****************************
NAVBAR
******************************/

.navbar-brand {
  font-size: 30px;

  font-weight: 800;

  color: #fff;
}

.navbar-brand span {
  color: #ffc107;
}

.navbar-nav .nav-link {
  color: #fff;

  font-weight: 500;

  margin-left: 18px;

  position: relative;

  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #ffc107;
}

.navbar-nav .nav-link:before {
  content: "";

  position: absolute;

  left: 0;

  bottom: -6px;

  width: 0;

  height: 2px;

  background: #ffc107;

  transition: 0.3s;
}

.navbar-nav .nav-link:hover:before {
  width: 100%;
}

/******************************
LOGIN BUTTONS
******************************/

.login-btn {
  padding: 12px 26px;

  border-radius: 40px;

  background: #222;

  color: #fff;

  margin-left: 15px;

  transition: 0.3s;
}

.login-btn:hover {
  background: #333;
}

.signup-btn {
  padding: 12px 28px;

  border-radius: 40px;

  background: var(--gradient);

  font-weight: 700;

  color: #000;

  margin-left: 10px;

  transition: 0.3s;
}

.signup-btn:hover {
  transform: translateY(-3px);
}

/*********************************
HERO SECTION
**********************************/

.hero {
  padding-top: 100px;
  padding-bottom: 120px;

  position: relative;

  overflow: hidden;
}

.hero:before {
  content: "";

  position: absolute;

  width: 650px;

  height: 650px;

  border-radius: 50%;

  background: #ffc10715;

  filter: blur(100px);

  right: -200px;

  top: -100px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;

  margin-bottom: 35px;
}

.hero-badge {
  display: inline-flex;

  align-items: center;

  padding: 10px 24px;

  background: #1c1c1c;

  border: 1px solid rgba(255, 193, 7, 0.2);

  border-radius: 60px;

  margin-bottom: 30px;

  color: #ffc107;

  font-weight: 600;
}

/********************************
HERO IMAGE
********************************/

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 25px;

  box-shadow: var(--shadow);
}

.hero-image:before {
  content: "";

  position: absolute;

  width: 100%;

  height: 100%;

  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));

  border-radius: 25px;
}

/**********************************
LOGIN CARD
**********************************/

.login-card {
  background: rgba(15, 15, 15, 0.95);

  border: 1px solid rgba(255, 255, 255, 0.08);

  padding: 40px;

  border-radius: 25px;

  box-shadow: var(--shadow);

  backdrop-filter: blur(20px);
}

.login-card h3 {
  margin-bottom: 8px;
}

.login-card p {
  margin-bottom: 30px;
}

.login-card .form-control {
  height: 58px;

  background: #1b1b1b;

  border: 1px solid rgba(255, 255, 255, 0.05);

  color: #fff;

  border-radius: 15px;

  margin-bottom: 18px;
}

.login-card .form-control:focus {
  background: #222;

  border-color: #ffc107;

  box-shadow: none;

  color: #fff;
}

.login-card label {
  margin-bottom: 8px;

  font-weight: 500;
}

.login-card .forgot {
  color: #ffc107;

  font-size: 14px;
}

.login-card .btn-main {
  width: 100%;

  margin-top: 15px;
}

/*******************************
GLASS CARD
*******************************/

.glass-card {
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 20px;

  backdrop-filter: blur(15px);

  padding: 30px;

  transition: 0.35s;
}

.glass-card:hover {
  transform: translateY(-10px);

  border-color: #ffc107;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

/********************************
UTILITY
********************************/

.text-gold {
  color: #ffc107;
}

.bg-dark2 {
  background: #101010;
}

.mt-70 {
  margin-top: 70px;
}

.mb-70 {
  margin-bottom: 70px;
}

.rounded-xl {
  border-radius: 25px;
}

.shadow-gold {
  box-shadow: 0 25px 60px rgba(255, 193, 7, 0.25);
}

/*==================================================
FEATURE SECTION
===================================================*/

.features {
  background: #0b0b0b;

  position: relative;
}

.features::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  background: #ffc10710;

  border-radius: 50%;

  left: -200px;
  top: 100px;

  filter: blur(100px);
}

.feature-card {
  background: #141414;

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 22px;

  padding: 35px 28px;

  transition: 0.35s;

  height: 100%;

  position: relative;

  overflow: hidden;
}

.feature-card:before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  height: 4px;
  width: 100%;

  background: var(--gradient);

  transform: scaleX(0);

  transition: 0.35s;
}

.feature-card:hover:before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-12px);

  border-color: #ffc107;

  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  width: 80px;
  height: 80px;

  background: rgba(255, 193, 7, 0.08);

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 34px;

  color: #ffc107;

  border-radius: 18px;

  margin-bottom: 25px;

  transition: 0.35s;
}

.feature-card:hover .feature-icon {
  background: var(--gradient);

  color: #000;

  transform: rotate(8deg);
}

.feature-card h4 {
  margin-bottom: 15px;

  font-weight: 700;
}

.feature-card p {
  margin: 0;

  color: #bdbdbd;
}

/*======================================
STATISTICS
=======================================*/

.stats {
  margin-top: 70px;
}

.stat-box {
  background: #101010;

  padding: 30px;

  border-radius: 20px;

  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.05);

  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-8px);

  border-color: #ffc107;
}

.stat-box h2 {
  font-size: 46px;

  font-weight: 800;

  color: #ffc107;

  margin-bottom: 8px;
}

.stat-box span {
  font-size: 15px;

  color: #c8c8c8;
}

/*==========================================
SPORTS SECTION
===========================================*/

.sports {
  background: #050505;
}

.sport-card {
  background: #141414;

  border-radius: 20px;

  overflow: hidden;

  transition: 0.35s;

  position: relative;

  height: 100%;

  border: 1px solid rgba(255, 255, 255, 0.05);
}

.sport-card img {
  height: 220px;

  width: 100%;

  object-fit: cover;

  transition: 0.45s;
}

.sport-card:hover img {
  transform: scale(1.08);
}

.sport-card-body {
  padding: 25px;
}

.sport-card h4 {
  margin-bottom: 12px;
}

.sport-card p {
  font-size: 15px;

  margin-bottom: 20px;
}

.sport-card a {
  color: #ffc107;

  font-weight: 600;
}

.sport-card:hover {
  transform: translateY(-10px);

  border-color: #ffc107;

  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
}

/*===================================
SPORT ICON BADGE
===================================*/

.sport-badge {
  position: absolute;

  left: 20px;
  top: 20px;

  background: #ffc107;

  color: #000;

  padding: 8px 18px;

  font-size: 13px;

  font-weight: 700;

  border-radius: 40px;
}

/*=====================================
POPULAR GAMES
======================================*/

.games {
  background: #0d0d0d;
}

.game-card {
  position: relative;

  overflow: hidden;

  border-radius: 20px;

  background: #111;

  transition: 0.35s;
}

.game-card img {
  width: 100%;

  height: 240px;

  object-fit: cover;

  transition: 0.4s;
}

.game-card:hover img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;

  padding: 25px;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
}

.game-overlay h4 {
  margin-bottom: 10px;
}

.game-overlay a {
  display: inline-block;

  margin-top: 10px;

  color: #ffc107;

  font-weight: 600;
}

.game-card:hover {
  transform: translateY(-10px);
}

/*======================================
POPULAR CRICKET LEAGUES
=======================================*/

.leagues {
  background: #050505;
}

.league-card {
  background: #121212;

  border-radius: 18px;

  padding: 28px;

  text-align: center;

  transition: 0.35s;

  border: 1px solid rgba(255, 255, 255, 0.05);

  height: 100%;
}

.league-card img {
  width: 90px;

  margin: auto;

  margin-bottom: 18px;
}

.league-card h5 {
  font-weight: 700;

  margin-bottom: 10px;
}

.league-card p {
  font-size: 14px;
}

.league-card:hover {
  transform: translateY(-8px);

  background: #181818;

  border-color: #ffc107;
}

/*====================================
DOWNLOAD APP
=====================================*/

.download {
  position: relative;

  overflow: hidden;
}

.download-box {
  background: linear-gradient(135deg, #151515, #090909);

  border-radius: 30px;

  padding: 70px;

  position: relative;

  overflow: hidden;
}

.download-box::before {
  content: "";

  position: absolute;

  right: -120px;

  top: -120px;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: #ffc10720;

  filter: blur(80px);
}

.download-box h2 {
  margin-bottom: 25px;
}

.store-buttons {
  display: flex;

  gap: 20px;

  flex-wrap: wrap;

  margin-top: 35px;
}

.store-btn {
  display: flex;

  align-items: center;

  padding: 18px 30px;

  background: #1d1d1d;

  border-radius: 16px;

  transition: 0.35s;

  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.05);
}

.store-btn:hover {
  background: #ffc107;

  color: #000;

  transform: translateY(-6px);
}

.store-btn i {
  font-size: 34px;

  margin-right: 15px;
}

/*===================================
PHONE MOCKUP
====================================*/

.phone {
  position: relative;

  text-align: center;
}

.phone img {
  max-width: 320px;

  animation: floatPhone 5s infinite ease-in-out;
}

@keyframes floatPhone {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/*=====================================
PAYMENT METHODS
======================================*/

.payments {
  background: #0d0d0d;
}

.payment-card {
  background: #151515;

  padding: 30px;

  border-radius: 18px;

  text-align: center;

  transition: 0.35s;

  border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-card img {
  height: 55px;

  margin: auto;

  margin-bottom: 20px;
}

.payment-card:hover {
  transform: translateY(-10px);

  border-color: #ffc107;
}

/*======================================
PROCESS
======================================*/

.process-card {
  position: relative;

  padding: 40px;

  background: #141414;

  border-radius: 25px;

  transition: 0.35s;

  height: 100%;

  border: 1px solid rgba(255, 255, 255, 0.05);
}

.process-number {
  width: 70px;

  height: 70px;

  background: var(--gradient);

  color: #000;

  font-size: 30px;

  font-weight: 700;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  margin-bottom: 25px;
}

.process-card:hover {
  transform: translateY(-12px);

  border-color: #ffc107;
}

/*=====================================================
TESTIMONIAL SECTION
=====================================================*/

.testimonials {
  background: #090909;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;

  width: 450px;
  height: 450px;

  right: -180px;
  top: -100px;

  border-radius: 50%;

  background: #ffc10715;

  filter: blur(100px);
}

.testimonial-card {
  background: #141414;

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 25px;

  padding: 40px;

  transition: 0.35s;

  height: 100%;

  position: relative;

  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-10px);

  border-color: #ffc107;
}

.testimonial-card::before {
  content: "❝";

  position: absolute;

  right: 30px;

  top: 20px;

  font-size: 90px;

  font-weight: 800;

  color: rgba(255, 193, 7, 0.08);
}

.testimonial-stars {
  margin-bottom: 20px;

  color: #ffc107;

  font-size: 18px;
}

.testimonial-card p {
  font-size: 16px;

  line-height: 1.8;

  margin-bottom: 30px;
}

.client {
  display: flex;

  align-items: center;
}

.client img {
  width: 65px;
  height: 65px;

  border-radius: 50%;

  object-fit: cover;

  margin-right: 15px;

  border: 3px solid #ffc107;
}

.client h5 {
  margin-bottom: 3px;

  font-weight: 700;
}

.client span {
  color: #999;

  font-size: 14px;
}

/*=====================================
SWIPER
=====================================*/

.swiper-pagination-bullet {
  background: #ffc107;

  opacity: 0.35;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffc107;
}

/*=====================================
FAQ
=====================================*/

.faq {
  background: #0d0d0d;
}

.accordion-item {
  background: #141414;

  border: none;

  margin-bottom: 18px;

  border-radius: 18px;

  overflow: hidden;
}

.accordion-button {
  background: #141414;

  color: #fff;

  font-size: 18px;

  font-weight: 600;

  padding: 22px;

  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: #1b1b1b;

  color: #ffc107;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 25px;

  color: #bbb;

  line-height: 1.8;

  background: #191919;
}

/*====================================
CTA SECTION
====================================*/

.cta {
  background: linear-gradient(135deg, #ffcb05, #ff9800);

  border-radius: 35px;

  padding: 80px;

  text-align: center;

  position: relative;

  overflow: hidden;
}

.cta::before {
  content: "";

  position: absolute;

  left: -100px;
  bottom: -100px;

  width: 250px;
  height: 250px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);
}

.cta h2 {
  color: #000;

  font-size: 52px;

  margin-bottom: 20px;
}

.cta p {
  color: #222;

  font-size: 18px;

  margin-bottom: 35px;
}

.cta .btn-main {
  background: #000;

  color: #fff;
}

.cta .btn-main:hover {
  background: #222;
}

/*=====================================
BLOG SECTION
=====================================*/

.blog {
  background: #090909;
}

.blog-card {
  background: #141414;

  border-radius: 20px;

  overflow: hidden;

  transition: 0.35s;

  border: 1px solid rgba(255, 255, 255, 0.05);

  height: 100%;
}

.blog-card img {
  height: 240px;

  width: 100%;

  object-fit: cover;

  transition: 0.4s;
}

.blog-card:hover img {
  transform: scale(1.08);
}

.blog-content {
  padding: 28px;
}

.blog-date {
  display: inline-block;

  background: #ffc107;

  color: #000;

  font-size: 13px;

  font-weight: 700;

  padding: 6px 15px;

  border-radius: 30px;

  margin-bottom: 15px;
}

.blog-content h4 {
  margin-bottom: 15px;

  line-height: 1.5;
}

.blog-card:hover {
  transform: translateY(-10px);

  border-color: #ffc107;
}

.blog-content a {
  color: #ffc107;

  font-weight: 700;
}

/*====================================
FOOTER
====================================*/

footer {
  background: #050505;

  padding-top: 100px;

  padding-bottom: 40px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  font-size: 36px;

  font-weight: 800;

  margin-bottom: 20px;
}

.footer-logo span {
  color: #ffc107;
}

.footer-about {
  color: #aaa;

  line-height: 1.9;
}

.footer-title {
  font-size: 22px;

  font-weight: 700;

  margin-bottom: 25px;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #aaa;

  transition: 0.3s;
}

.footer-links a:hover {
  padding-left: 8px;

  color: #ffc107;
}

.social {
  display: flex;

  gap: 12px;

  margin-top: 25px;
}

.social a {
  width: 48px;

  height: 48px;

  border-radius: 50%;

  background: #141414;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  transition: 0.3s;
}

.social a:hover {
  background: #ffc107;

  color: #000;

  transform: translateY(-6px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  margin-top: 70px;

  padding-top: 30px;

  text-align: center;

  color: #888;
}

/*=====================================
PAYMENT ICONS
=====================================*/

.payment-icons {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;

  margin-top: 20px;
}

.payment-icons img {
  height: 40px;

  filter: grayscale(100%);

  transition: 0.3s;
}

.payment-icons img:hover {
  filter: none;

  transform: scale(1.1);
}

/*===================================
FLOATING BUTTONS
===================================*/

.float-buttons {
  position: fixed;

  right: 25px;

  bottom: 25px;

  display: flex;

  flex-direction: column;

  gap: 14px;

  z-index: 999;
}

.float-btn {
  width: 62px;

  height: 62px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 26px;

  color: #fff;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);

  transition: 0.3s;
}

.float-btn:hover {
  transform: scale(1.12);
}

.whatsapp {
  background: #25d366;
}

.telegram {
  background: #229ed9;
}

.bonus {
  background: #ffc107;

  color: #000;
}

/*=====================================
BACK TO TOP
=====================================*/

#backTop {
  position: fixed;

  left: 25px;

  bottom: 25px;

  width: 60px;

  height: 60px;

  border-radius: 50%;

  background: #ffc107;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 22px;

  color: #000;

  cursor: pointer;

  opacity: 0;

  visibility: hidden;

  transition: 0.35s;

  z-index: 999;
}

#backTop.show {
  opacity: 1;

  visibility: visible;
}

#backTop:hover {
  transform: translateY(-8px);
}

/*====================================
TRUST BADGES
====================================*/

.trust-badges {
  display: flex;

  gap: 20px;

  flex-wrap: wrap;

  margin-top: 40px;
}

.badge-box {
  background: #151515;

  padding: 18px 28px;

  border-radius: 18px;

  display: flex;

  align-items: center;

  gap: 12px;

  border: 1px solid rgba(255, 255, 255, 0.05);

  transition: 0.3s;
}

.badge-box:hover {
  border-color: #ffc107;

  transform: translateY(-5px);
}

.badge-box i {
  font-size: 26px;

  color: #ffc107;
}

/*===================================
SECTION DIVIDER
===================================*/

.wave-divider {
  position: absolute;

  left: 0;

  bottom: -2px;

  width: 100%;

  line-height: 0;
}

.wave-divider svg {
  display: block;

  width: 100%;

  height: 120px;

  fill: #090909;
}

/*=====================================
ANIMATIONS
=====================================*/

.fade-up {
  animation: fadeUp 0.8s ease forwards;

  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(40px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.zoom-in {
  animation: zoomIn 0.8s ease forwards;
}

@keyframes zoomIn {
  from {
    opacity: 0;

    transform: scale(0.8);
  }

  to {
    opacity: 1;

    transform: scale(1);
  }
}

.rotate {
  animation: rotateIcon 8s linear infinite;
}

@keyframes rotateIcon {
  100% {
    transform: rotate(360deg);
  }
}

/*=========================================================
RESPONSIVE CSS
Mobile First
=========================================================*/

/***********************
1400px
************************/

@media (max-width: 1400px) {
  .hero h1 {
    font-size: 54px;
  }

  .section-title h2 {
    font-size: 42px;
  }

  .download-box {
    padding: 60px;
  }
}

/***********************
1200px
************************/

@media (max-width: 1200px) {
  section {
    padding: 80px 0;
  }

  .hero {
    padding-top: 150px;
  }

  .hero h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
  }

  .phone img {
    max-width: 260px;
  }

  .download-box {
    padding: 50px;
  }

  .login-card {
    padding: 35px;
  }

  .feature-card {
    padding: 30px;
  }
}

/***********************
991px
************************/

@media (max-width: 991px) {
  .navbar-collapse {
    background: #111;

    padding: 25px;

    border-radius: 18px;

    margin-top: 20px;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    margin: 12px 0;
  }

  .signup-btn,
  .login-btn {
    display: block;

    margin: 10px auto;

    width: 220px;

    text-align: center;
  }

  .hero {
    padding-top: 130px;

    text-align: center;
  }

  .hero-image {
    margin-top: 60px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .store-buttons {
    justify-content: center;
  }

  .phone {
    margin-top: 50px;
  }

  .cta {
    padding: 60px 40px;
  }

  .cta h2 {
    font-size: 38px;
  }

  .footer-widget {
    margin-bottom: 45px;
  }
}

/***********************
768px
************************/

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 110px;
  }

  .hero h1 {
    font-size: 34px;

    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title {
    margin-bottom: 50px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .feature-card {
    padding: 28px;
  }

  .feature-icon {
    width: 65px;
    height: 65px;

    font-size: 28px;
  }

  .download-box {
    padding: 35px;
  }

  .login-card {
    padding: 30px;
  }

  .blog-card img {
    height: 220px;
  }

  .testimonial-card {
    padding: 30px;
  }

  .footer-logo {
    font-size: 30px;
  }

  .social {
    justify-content: center;
  }

  .payment-icons {
    justify-content: center;
  }

  .float-buttons {
    right: 15px;
    bottom: 85px;
  }

  #backTop {
    left: 15px;

    bottom: 85px;
  }
}

/***********************
576px
************************/

@media (max-width: 576px) {
  .container {
    padding-left: 18px;

    padding-right: 18px;
  }

  .hero {
    padding-top: 90px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-badge {
    font-size: 13px;

    padding: 8px 18px;
  }

  .btn-main {
    width: 100%;

    margin-bottom: 15px;
  }

  .btn-outline {
    width: 100%;
  }

  .hero-buttons {
    display: block;
  }

  .login-card {
    padding: 22px;

    border-radius: 18px;
  }

  .login-card h3 {
    font-size: 24px;
  }

  .login-card .form-control {
    height: 54px;

    font-size: 15px;
  }

  .feature-card {
    padding: 25px;
  }

  .feature-card h4 {
    font-size: 20px;
  }

  .stat-box {
    margin-bottom: 20px;
  }

  .sport-card img {
    height: 200px;
  }

  .game-card img {
    height: 200px;
  }

  .blog-card img {
    height: 200px;
  }

  .cta {
    padding: 40px 20px;

    border-radius: 20px;
  }

  .cta h2 {
    font-size: 28px;
  }

  .download-box {
    padding: 30px 20px;
  }

  .download-box h2 {
    font-size: 30px;
  }

  .store-btn {
    width: 100%;

    justify-content: center;
  }

  .phone img {
    max-width: 220px;
  }

  .footer {
    text-align: center;
  }

  .footer-links {
    padding-left: 0;
  }

  .footer-links li {
    margin-bottom: 10px;
  }
}

/***********************
375px
************************/

@media (max-width: 375px) {
  .hero h1 {
    font-size: 26px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .login-card {
    padding: 18px;
  }

  .login-card .form-control {
    height: 50px;
  }

  .feature-icon {
    width: 58px;

    height: 58px;

    font-size: 24px;
  }

  .float-btn {
    width: 52px;

    height: 52px;

    font-size: 22px;
  }

  #backTop {
    width: 50px;

    height: 50px;
  }
}

/************************************************
BOTTOM MOBILE NAVIGATION
************************************************/

.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-nav {
    position: fixed;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 70px;

    background: #111;

    display: flex;

    justify-content: space-around;

    align-items: center;

    z-index: 99999;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.4);
  }

  .mobile-nav a {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    font-size: 12px;

    color: #ccc;

    transition: 0.3s;
  }

  .mobile-nav i {
    font-size: 20px;

    margin-bottom: 4px;
  }

  .mobile-nav a.active {
    color: #ffc107;
  }

  .mobile-nav a:hover {
    color: #ffc107;
  }
}

/*********************************************
PRELOADER
**********************************************/

.preloader {
  position: fixed;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: #050505;

  display: flex;

  justify-content: center;

  align-items: center;

  z-index: 999999;

  transition: 0.5s;
}

.loader {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  border: 6px solid rgba(255, 255, 255, 0.08);

  border-top-color: #ffc107;

  animation: spinLoader 1s linear infinite;
}

@keyframes spinLoader {
  100% {
    transform: rotate(360deg);
  }
}

/********************************************
TEXT SELECTION
********************************************/

::selection {
  background: #ffc107;

  color: #000;
}

/********************************************
SCROLLBAR
********************************************/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
  background: #ffc107;

  border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff9800;
}

/********************************************
IMAGE HOVER
********************************************/

img {
  transition: 0.4s;
}

img:hover {
  transform: translateY(-2px);
}

/********************************************
UTILITY CLASSES
********************************************/

.text-shadow {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.border-gold {
  border: 1px solid rgba(255, 193, 7, 0.35);
}

.bg-gradient {
  background: linear-gradient(135deg, #ffc107, #ff9800);
}

.radius-20 {
  border-radius: 20px;
}

.radius-30 {
  border-radius: 30px;
}

.shadow-lg-gold {
  box-shadow: 0 20px 60px rgba(255, 193, 7, 0.25);
}

.hover-up {
  transition: 0.35s;
}

.hover-up:hover {
  transform: translateY(-10px);
}

.transition {
  transition: 0.35s;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-50 {
  opacity: 0.5;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.z-2 {
  z-index: 2;
}

.position-relative {
  position: relative;
}

.testimonial-stars{
    margin-bottom:18px;
}

.testimonial-stars img{
    width:100px;
    height:auto;
    display:block;
    object-fit:contain;
}
