/*==================================
 BATTLE LOBBY V2
 STYLE.CSS PART 1A
==================================*/
html,
body {
    width: 100%;
    overflow-x: hidden;
}
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root{

--primary:#ff6b00;
--secondary:#ff9500;
--dark:#080808;
--dark2:#111111;
--card:#181818;
--white:#ffffff;
--text:#d6d6d6;
--border:rgba(255,255,255,.08);

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;
background:#050505;
color:#fff;
overflow-x:hidden;

}

body::before{

content:"";
position:fixed;
width:700px;
height:700px;
background:radial-gradient(circle,
rgba(255,107,0,.18),
transparent 70%);
top:-250px;
right:-250px;
z-index:-1;

}

body::after{

content:"";
position:fixed;
width:650px;
height:650px;
background:radial-gradient(circle,
rgba(255,170,0,.08),
transparent 70%);
bottom:-300px;
left:-300px;
z-index:-1;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;
color:inherit;

}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}
    /*========================
 LOADER
========================*/

    .loader{

position:fixed;
inset:0;
background:#000;
display:flex;
justify-content:center;
align-items:center;
z-index:99999;

}

.loader-logo{

display:flex;
flex-direction:column;
align-items:center;
gap:20px;

}

.loader-logo img{

width:110px;
animation:spinLogo 3s linear infinite;

}

.loader-logo h2{

font-family:'Orbitron';
letter-spacing:4px;
color:var(--primary);

}

@keyframes spinLogo{

0%{

transform:rotateY(0deg);

}

100%{

transform:rotateY(360deg);

}

}

/*========================
 HEADER
========================*/

header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
backdrop-filter:blur(18px);
background:rgba(0,0,0,.55);
border-bottom:1px solid rgba(255,255,255,.05);

}

header .container{

display:flex;
align-items:center;
justify-content:space-between;
padding:18px 0;

}

.logo{

display:flex;
align-items:center;
gap:15px;

}

.logo img{

width:55px;
border-radius:15px;
box-shadow:0 0 25px rgba(255,107,0,.35);

}

.logo span{

font-family:'Orbitron';
font-size:24px;
font-weight:800;
color:#fff;

}

nav{

display:flex;
gap:30px;

}

nav a{

font-size:15px;
font-weight:600;
color:#ddd;
transition:.35s;

}

nav a:hover{

color:var(--primary);

}

.download-btn{

padding:14px 28px;
border-radius:50px;
background:linear-gradient(90deg,
var(--primary),
var(--secondary));
font-weight:700;
transition:.35s;
box-shadow:0 10px 30px rgba(255,107,0,.35);

}

.download-btn:hover{

transform:translateY(-4px);
box-shadow:0 18px 40px rgba(255,107,0,.55);

}

.mobile-menu{

display:none;
font-size:28px;
cursor:pointer;

}

/*========================
 HERO
========================*/

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 50px;
}

.hero-bg{

position:absolute;
inset:0;
background:

linear-gradient(rgba(0,0,0,.65),
rgba(0,0,0,.9)),

url("../images/bg.jpg");

background-size:cover;
background-position:center;
z-index:-3;

}

.hero::before{

content:"";
position:absolute;
width:600px;
height:600px;
background:radial-gradient(circle,
rgba(255,120,0,.25),
transparent 70%);
left:-250px;
top:50px;
filter:blur(40px);

}

.hero::after{

content:"";
position:absolute;
width:500px;
height:500px;
background:radial-gradient(circle,
rgba(255,170,0,.18),
transparent 70%);
right:-180px;
bottom:-120px;
filter:blur(40px);

}
/*========================
 HERO CONTENT
========================*/

.hero-content{

display:grid;
grid-template-columns:1.1fr .9fr;
align-items:center;
gap:70px;
width:100%;

}

/*========================
 LEFT SIDE
========================*/

.hero-left{

position:relative;
z-index:2;

}

.badge{

display:inline-flex;
align-items:center;
gap:10px;

padding:12px 22px;

border-radius:50px;

background:rgba(255,107,0,.12);

border:1px solid rgba(255,107,0,.25);

backdrop-filter:blur(12px);

color:#ffb06d;

font-size:14px;

font-weight:600;

margin-bottom:28px;

animation:fadeDown 1s ease;

}

.hero-left h1{

font-family:'Orbitron';

font-size:72px;

font-weight:800;

line-height:1.08;

letter-spacing:2px;

margin-bottom:28px;

text-transform:uppercase;

background:linear-gradient(90deg,
#ffffff,
#ffb347,
#ff6500);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero-left p{

max-width:620px;

font-size:18px;

line-height:1.9;

color:#bdbdbd;

margin-bottom:38px;

}

/*========================
 HERO BUTTONS
========================*/

.hero-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

margin-bottom:45px;

}

.primary-btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:12px;

padding:18px 36px;

border-radius:60px;

background:linear-gradient(135deg,
var(--primary),
var(--secondary));

font-weight:700;

font-size:16px;

transition:.35s;

box-shadow:

0 15px 35px rgba(255,107,0,.35);

}

.primary-btn:hover{

transform:translateY(-6px) scale(1.03);

box-shadow:

0 25px 60px rgba(255,107,0,.55);

}

.secondary-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 34px;

border-radius:60px;

border:1px solid rgba(255,255,255,.15);

background:rgba(255,255,255,.05);

backdrop-filter:blur(15px);

font-weight:600;

transition:.35s;

}

.secondary-btn:hover{

background:rgba(255,107,0,.12);

border-color:rgba(255,107,0,.4);

transform:translateY(-4px);

}

/*========================
 HERO STATS
========================*/

.hero-stats{

display:flex;

gap:24px;

flex-wrap:wrap;

margin-top:20px;

}

.hero-stats div{

min-width:150px;

padding:22px;

border-radius:20px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(18px);

transition:.35s;

}

.hero-stats div:hover{

transform:translateY(-8px);

border-color:rgba(255,107,0,.4);

box-shadow:

0 20px 45px rgba(255,107,0,.18);

}

.hero-stats h2{

font-family:'Orbitron';

font-size:34px;

color:var(--primary);

margin-bottom:8px;

}

.hero-stats span{

font-size:15px;

color:#d0d0d0;

}

/*========================
 RIGHT SIDE
========================*/

.hero-right{

display:flex;

justify-content:center;

align-items:center;

position:relative;

}

.phone{

position:relative;

width:360px;

height:720px;

border-radius:42px;

padding:18px;

background:linear-gradient(
145deg,
#232323,
#090909);

border:2px solid rgba(255,255,255,.08);

box-shadow:

0 35px 80px rgba(0,0,0,.7),
0 0 70px rgba(255,107,0,.22);

animation:floating 5s ease-in-out infinite;

overflow:hidden;

}

.phone::before{

content:"";

position:absolute;

inset:0;

background:linear-gradient(
180deg,
rgba(255,255,255,.05),
transparent);

pointer-events:none;

}

.phone img{

width:100%;

height:100%;

object-fit:cover;

border-radius:28px;

}

.phone::after{

content:"";

position:absolute;

width:220px;

height:220px;

background:radial-gradient(circle,
rgba(255,120,0,.4),
transparent 70%);

top:-70px;

right:-70px;

filter:blur(25px);

}

/*========================
 ANIMATIONS
========================*/

@keyframes floating{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}

@keyframes fadeDown{

0%{

opacity:0;

transform:translateY(-35px);

}

100%{

opacity:1;

transform:translateY(0);

}

}
/*==================================
 FEATURES SECTION
 STYLE.CSS PART 1C
==================================*/

.features{

padding:120px 0;
position:relative;

}

.features::before{

content:"";
position:absolute;
width:450px;
height:450px;
background:radial-gradient(circle,
rgba(255,107,0,.12),
transparent 70%);
left:-180px;
top:0;
filter:blur(40px);

}

.section-title{

text-align:center;
margin-bottom:70px;

}

.section-title span{

display:inline-block;
padding:10px 24px;
border-radius:40px;
background:rgba(255,107,0,.12);
border:1px solid rgba(255,107,0,.25);
color:#ffb36b;
font-size:14px;
font-weight:700;
letter-spacing:1px;
margin-bottom:18px;

}

.section-title h2{

font-family:'Orbitron';
font-size:48px;
font-weight:800;
margin-bottom:18px;
line-height:1.3;

}

.section-title p{

max-width:700px;
margin:auto;
font-size:17px;
line-height:1.8;
color:#bfbfbf;

}

/*========================
 FEATURE GRID
========================*/

.feature-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.feature-card{

position:relative;
overflow:hidden;

padding:40px 30px;

border-radius:24px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(18px);

transition:.45s;

cursor:pointer;

}

.feature-card::before{

content:"";

position:absolute;

width:250px;
height:250px;

background:radial-gradient(circle,
rgba(255,107,0,.22),
transparent 70%);

top:-120px;
right:-120px;

opacity:0;

transition:.45s;

}

.feature-card:hover{

transform:translateY(-12px);

border-color:rgba(255,107,0,.45);

box-shadow:

0 25px 60px rgba(255,107,0,.18);

}

.feature-card:hover::before{

opacity:1;

}

.feature-card .icon{

width:78px;
height:78px;

border-radius:22px;

display:flex;
justify-content:center;
align-items:center;

background:linear-gradient(
135deg,
var(--primary),
var(--secondary));

font-size:30px;

margin-bottom:28px;

box-shadow:

0 15px 35px rgba(255,107,0,.35);

transition:.35s;

}

.feature-card:hover .icon{

transform:rotate(-8deg) scale(1.08);

}

.feature-card h3{

font-size:24px;
font-weight:700;
margin-bottom:15px;

}

.feature-card p{

font-size:15px;
line-height:1.9;
color:#c5c5c5;

}

/*========================
 WHY SECTION
========================*/

.why{

padding:120px 0;

}

.why .container{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:80px;

}

.why .left{

position:relative;

display:flex;

justify-content:center;

}

.why .left img{

width:420px;

border-radius:35px;

box-shadow:

0 35px 80px rgba(0,0,0,.7),
0 0 80px rgba(255,107,0,.22);

animation:floating 5s ease-in-out infinite;

}

.why .small-title{

display:inline-block;

margin-bottom:20px;

color:var(--primary);

font-weight:700;

letter-spacing:2px;

}

.why h2{

font-family:'Orbitron';

font-size:48px;

margin-bottom:25px;

line-height:1.3;

}

.why p{

font-size:17px;

line-height:2;

color:#c7c7c7;

margin-bottom:30px;

}

.points{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-bottom:35px;

}

.points div{

padding:18px 20px;

border-radius:16px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.points div:hover{

border-color:rgba(255,107,0,.35);

transform:translateX(8px);

}

.points i{

color:var(--primary);

margin-right:10px;

}
/*==================================
 TOURNAMENTS SECTION
 STYLE.CSS PART 1D
==================================*/

.tournaments{

padding:120px 0;
position:relative;

}

.tournaments::before{

content:"";
position:absolute;
right:-220px;
top:50px;
width:500px;
height:500px;
background:radial-gradient(circle,
rgba(255,107,0,.12),
transparent 70%);
filter:blur(60px);

}

.tournament-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;

}

.tournament-card{

position:relative;

overflow:hidden;

padding:28px;

border-radius:28px;

background:linear-gradient(
180deg,
rgba(255,255,255,.05),
rgba(255,255,255,.03));

border:1px solid rgba(255,255,255,.08);

transition:.45s;

backdrop-filter:blur(20px);

}

.tournament-card:hover{

transform:translateY(-12px);

border-color:rgba(255,107,0,.45);

box-shadow:

0 30px 70px rgba(255,107,0,.18);

}

.tournament-card::before{

content:"";

position:absolute;

width:260px;
height:260px;

background:radial-gradient(circle,
rgba(255,107,0,.20),
transparent 70%);

top:-120px;
right:-120px;

opacity:0;

transition:.45s;

}

.tournament-card:hover::before{

opacity:1;

}

/*========================*/

.card-top{

display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;

}

.live-tag{

padding:8px 16px;

background:#ff3131;

border-radius:50px;

font-size:13px;

font-weight:700;

animation:livePulse 1.2s infinite;

}

.live-tag i{

font-size:10px;

margin-right:6px;

}

.upcoming-tag{

padding:8px 16px;

background:#ff9500;

border-radius:50px;

font-size:13px;

font-weight:700;

}

.entry{

padding:8px 16px;

border-radius:50px;

background:rgba(255,255,255,.08);

font-weight:600;

}

/*========================*/

.game-image{

height:220px;

border-radius:22px;

overflow:hidden;

margin-bottom:25px;

}

.game-image img{

width:100%;
height:100%;
object-fit:cover;
transition:.6s;

}

.tournament-card:hover .game-image img{

transform:scale(1.08);

}

/*========================*/

.tournament-card h3{

font-family:'Orbitron';

font-size:28px;

margin-bottom:25px;

}

.details{

display:flex;

justify-content:space-between;

margin-bottom:30px;

}

.details label{

display:block;

font-size:13px;

color:#999;

margin-bottom:8px;

}

.details strong{

font-size:22px;

color:var(--primary);

}

/*========================*/

.progress-box{

margin-bottom:30px;

}

.progress-text{

display:flex;

justify-content:space-between;

margin-bottom:12px;

font-size:14px;

}

.progress{

height:12px;

border-radius:50px;

background:#222;

overflow:hidden;

}

.progress-fill{

height:100%;

border-radius:50px;

background:linear-gradient(
90deg,
var(--primary),
var(--secondary));

animation:progressMove 2s ease;

}

/*========================*/

.join-btn{

display:flex;

justify-content:center;

align-items:center;

padding:18px;

border-radius:16px;

font-weight:700;

font-size:17px;

background:linear-gradient(
135deg,
var(--primary),
var(--secondary));

transition:.35s;

box-shadow:

0 18px 40px rgba(255,107,0,.28);

}

.join-btn:hover{

transform:scale(1.03);

box-shadow:

0 25px 55px rgba(255,107,0,.45);

}

/*==================================
 LIVE STATS
==================================*/

.live-stats{

padding:120px 0;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.stat-card{

padding:35px 25px;

text-align:center;

border-radius:24px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.stat-card:hover{

transform:translateY(-10px);

border-color:rgba(255,107,0,.4);

}

.stat-icon{

width:80px;
height:80px;

margin:auto;

margin-bottom:25px;

display:flex;

justify-content:center;
align-items:center;

border-radius:22px;

font-size:30px;

background:linear-gradient(
135deg,
var(--primary),
var(--secondary));

box-shadow:

0 20px 40px rgba(255,107,0,.3);

}

.stat-card h2{

font-family:'Orbitron';

font-size:38px;

margin-bottom:12px;

color:var(--primary);

}

.stat-card p{

color:#c8c8c8;

}

/*==================================
 ANIMATIONS
==================================*/

@keyframes livePulse{

0%{

transform:scale(1);

box-shadow:0 0 0 rgba(255,49,49,.6);

}

50%{

transform:scale(1.08);

box-shadow:0 0 25px rgba(255,49,49,.7);

}

100%{

transform:scale(1);

box-shadow:0 0 0 rgba(255,49,49,0);

}

}

@keyframes progressMove{

0%{

width:0;

}

}
/*==================================
 PRIZE SECTION
 STYLE.CSS PART 1E
==================================*/

.prize-section{

padding:120px 0;
position:relative;

}

.prize-section::before{

content:"";
position:absolute;
left:-180px;
bottom:-120px;
width:550px;
height:550px;
background:radial-gradient(circle,
rgba(255,107,0,.16),
transparent 70%);
filter:blur(60px);

}

.prize-wrapper{

display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;

}

/*========================
 LEFT CONTENT
========================*/

.prize-wrapper .left h2{

font-family:'Orbitron';
font-size:52px;
line-height:1.2;
margin:20px 0;

}

.prize-wrapper .left p{

font-size:17px;
line-height:2;
color:#c7c7c7;
margin-bottom:30px;

}

.prize-wrapper ul{

list-style:none;
display:grid;
gap:18px;
margin-bottom:40px;

}

.prize-wrapper ul li{

display:flex;
align-items:center;
gap:12px;

padding:16px 20px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:18px;

transition:.35s;

}

.prize-wrapper ul li:hover{

transform:translateX(10px);

border-color:rgba(255,107,0,.45);

background:rgba(255,107,0,.08);

}

.prize-wrapper ul li i{

color:var(--primary);
font-size:18px;

}

/*========================
 PRIZE CARD
========================*/

.prize-card{

position:relative;

padding:60px 45px;

border-radius:30px;

overflow:hidden;

background:linear-gradient(
135deg,
rgba(255,255,255,.08),
rgba(255,255,255,.04));

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

box-shadow:
0 30px 70px rgba(0,0,0,.45);

transition:.45s;

}

.prize-card:hover{

transform:translateY(-12px);

border-color:rgba(255,107,0,.45);

box-shadow:
0 35px 80px rgba(255,107,0,.22);

}

.prize-card span{

display:block;
font-size:15px;
color:#bdbdbd;
margin-bottom:20px;

}

.prize-card h1{

font-family:'Orbitron';
font-size:70px;
color:var(--primary);
margin-bottom:18px;

}

.prize-card p{

font-size:16px;
line-height:1.8;
color:#c8c8c8;

}

.prize-card::before{

content:"";
position:absolute;

top:-120px;
right:-120px;

width:280px;
height:280px;

background:radial-gradient(circle,
rgba(255,107,0,.25),
transparent 70%);

filter:blur(25px);

}

.shine{

position:absolute;

top:-120%;
left:-50%;

width:80px;
height:300%;

background:rgba(255,255,255,.18);

transform:rotate(25deg);

animation:shineMove 5s linear infinite;

}

/*==================================
 DOWNLOAD SECTION
==================================*/

.download-section{

padding:120px 0;

}

.download-box{

display:grid;
grid-template-columns:1.1fr .9fr;
gap:70px;

padding:70px;

border-radius:35px;

background:linear-gradient(
135deg,
rgba(255,255,255,.06),
rgba(255,255,255,.03));

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

position:relative;

overflow:hidden;

}

.download-box::before{

content:"";

position:absolute;

width:500px;
height:500px;

background:radial-gradient(circle,
rgba(255,107,0,.18),
transparent 70%);

right:-220px;
top:-180px;

}

.download-left h2{

font-family:'Orbitron';
font-size:50px;
margin:18px 0;

}

.download-left p{

font-size:17px;
line-height:2;
color:#c8c8c8;
margin-bottom:35px;

}

.download-features{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
margin-bottom:40px;

}

.download-features div{

padding:18px;

border-radius:16px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.download-features div:hover{

transform:translateY(-6px);

border-color:rgba(255,107,0,.4);

}

.download-features i{

color:var(--primary);
margin-right:10px;

}

.download-buttons{

display:flex;
gap:18px;
flex-wrap:wrap;

}

.download-btn-main{

display:flex;
align-items:center;
justify-content:center;
gap:12px;

padding:18px 36px;

border-radius:60px;

font-weight:700;

background:linear-gradient(
135deg,
var(--primary),
var(--secondary));

transition:.35s;

box-shadow:
0 18px 40px rgba(255,107,0,.35);

}

.download-btn-main:hover{

transform:translateY(-6px) scale(1.04);

box-shadow:
0 30px 60px rgba(255,107,0,.45);

}

.outline-btn{

display:flex;
align-items:center;
justify-content:center;

padding:18px 34px;

border-radius:60px;

border:1px solid rgba(255,255,255,.15);

background:rgba(255,255,255,.05);

transition:.35s;

}

.outline-btn:hover{

background:rgba(255,107,0,.10);

border-color:rgba(255,107,0,.35);

}

/*========================
 PHONE CARD
========================*/

.phone-card{

position:relative;

width:340px;

margin:auto;

padding:18px;

border-radius:34px;

background:linear-gradient(
145deg,
#222,
#090909);

box-shadow:
0 30px 80px rgba(0,0,0,.6);

animation:floating 5s ease-in-out infinite;

}

.phone-card img{

border-radius:24px;

}

.phone-glow{

position:absolute;

inset:-25px;

border-radius:45px;

background:radial-gradient(circle,
rgba(255,107,0,.18),
transparent 70%);

z-index:-1;

}

/*==================================
 REFER & EARN
==================================*/

.refer-section{

padding:120px 0;

}

.refer-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.refer-card{

position:relative;

padding:45px 35px;

border-radius:28px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(18px);

text-align:center;

transition:.45s;

overflow:hidden;

}

.refer-card:hover{

transform:translateY(-12px);

border-color:rgba(255,107,0,.45);

box-shadow:
0 30px 70px rgba(255,107,0,.18);

}

.refer-card::before{

content:"";

position:absolute;

width:240px;
height:240px;

background:radial-gradient(circle,
rgba(255,107,0,.18),
transparent 70%);

top:-120px;
right:-120px;

opacity:0;

transition:.45s;

}

.refer-card:hover::before{

opacity:1;

}

.step-number{

width:60px;
height:60px;

margin:auto auto 25px;

border-radius:50%;

display:flex;
justify-content:center;
align-items:center;

font-family:'Orbitron';

font-weight:700;

background:linear-gradient(
135deg,
var(--primary),
var(--secondary));

box-shadow:
0 18px 40px rgba(255,107,0,.35);

}

.refer-card i{

font-size:48px;

margin-bottom:22px;

color:var(--primary);

}

.refer-card h3{

font-size:26px;

margin-bottom:18px;

}

.refer-card p{

line-height:1.9;

color:#c8c8c8;

}

/*========================
 SHINE ANIMATION
========================*/

@keyframes shineMove{

0%{

left:-60%;

}

100%{

left:160%;

}

}
/*==================================
 TESTIMONIALS
 STYLE.CSS PART 1F
==================================*/

.testimonials{

padding:120px 0;
position:relative;

}

.testimonial-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.testimonial-card{

position:relative;

padding:40px 35px;

border-radius:28px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(18px);

transition:.4s;

overflow:hidden;

}

.testimonial-card:hover{

transform:translateY(-12px);

border-color:rgba(255,107,0,.4);

box-shadow:
0 30px 60px rgba(255,107,0,.18);

}

.testimonial-card::before{

content:"";

position:absolute;

width:220px;
height:220px;

background:radial-gradient(circle,
rgba(255,107,0,.18),
transparent 70%);

top:-100px;
right:-100px;

opacity:0;

transition:.4s;

}

.testimonial-card:hover::before{

opacity:1;

}

.quote{

font-size:26px;

color:gold;

margin-bottom:20px;

letter-spacing:4px;

}

.testimonial-card p{

line-height:1.9;

color:#c9c9c9;

margin-bottom:30px;

}

.player{

display:flex;

align-items:center;

gap:15px;

}

.player img{

width:65px;
height:65px;

border-radius:50%;

object-fit:cover;

border:3px solid rgba(255,107,0,.35);

}

.player h4{

margin-bottom:6px;

}

.player span{

font-size:14px;

color:#999;

}

/*========================
 FAQ
========================*/

.faq{

padding:120px 0;

}

.faq-box{

max-width:900px;

margin:auto;

}

.faq-item{

margin-bottom:18px;

border-radius:20px;

overflow:hidden;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.faq-item:hover{

border-color:rgba(255,107,0,.35);

}

.faq-btn{

width:100%;

padding:24px 30px;

background:none;

border:none;

display:flex;

justify-content:space-between;

align-items:center;

font-size:18px;

font-weight:600;

color:#fff;

cursor:pointer;

}

.faq-btn i{

transition:.35s;

color:var(--primary);

}

.faq-content{

display:none;

padding:0 30px 24px;

color:#c7c7c7;

line-height:1.9;

}

/*========================
 FOOTER
========================*/

footer{

padding:90px 0 30px;

background:#090909;

border-top:1px solid rgba(255,255,255,.05);

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:50px;

margin-bottom:50px;

}

.footer-logo{

width:75px;

margin-bottom:20px;

}

footer h3,
footer h4{

margin-bottom:20px;

font-family:'Orbitron';

}

footer p{

color:#a9a9a9;

line-height:1.8;

}

footer ul{

list-style:none;

}

footer ul li{

margin-bottom:15px;

color:#bdbdbd;

transition:.3s;

cursor:pointer;

}

footer ul li:hover{

color:var(--primary);

padding-left:8px;

}

.social-icons{

display:flex;

gap:15px;

}

.social-icons a{

width:48px;
height:48px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:rgba(255,255,255,.06);

transition:.35s;

font-size:18px;

}

.social-icons a:hover{

background:linear-gradient(
135deg,
var(--primary),
var(--secondary));

transform:translateY(-6px);

}

.footer-bottom{

padding-top:30px;

border-top:1px solid rgba(255,255,255,.08);

text-align:center;

color:#888;

font-size:15px;

}

/*========================
 SCROLLBAR
========================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#111;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(
180deg,
var(--primary),
var(--secondary));

border-radius:20px;

}

/*========================
 TEXT SELECTION
========================*/

::selection{

background:var(--primary);

color:#fff;

}

/*========================
 RESPONSIVE
========================*/

@media(max-width:1100px){

.hero-content,
.prize-wrapper,
.download-box,
.why .container{

grid-template-columns:1fr;

text-align:center;

}

.hero-left p{

margin:auto auto 40px;

}

.hero-buttons,
.hero-stats,
.download-buttons{

justify-content:center;

}

.feature-grid,
.stats-grid,
.refer-grid,
.testimonial-grid,
.footer-grid,
.tournament-grid{

grid-template-columns:repeat(2,1fr);

}

.points{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.hero-left h1{

font-size:46px;

}

.section-title h2{

font-size:34px;

}

.hero{

padding-top:110px;

}

nav{

display:none;

}

.mobile-menu{

display:block;

}

.feature-grid,
.stats-grid,
.refer-grid,
.testimonial-grid,
.footer-grid,
.tournament-grid,
.download-features{

grid-template-columns:1fr;

}

.phone{

width:300px;

height:600px;

}

.phone-card{

width:280px;

}

.download-box{

padding:40px 25px;

}

.hero-stats div{

width:100%;

}

}

/*========================
 UTILITIES
========================*/

.glow{

box-shadow:
0 0 30px rgba(255,107,0,.35);

}

.blur{

backdrop-filter:blur(20px);

}

.text-orange{

color:var(--primary);

}

.text-center{

text-align:center;

}
/*========================
SCRIPT SUPPORT
========================*/

.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.feature-card,
.tournament-card,
.stat-card,
.refer-card,
.testimonial-card,
.prize-card {
    opacity: 0;
    transform: translateY(60px);
    transition: .8s;
}

nav.active {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 25px;
    flex-direction: column;
    background: #111;
}

nav a.active {
    color: var(--primary);
}

.pulse {
    animation: pulseButton .9s;
}

@keyframes pulseButton {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}
/*=========================
SCRIPT PART 1C SUPPORT
=========================*/

#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg,#ff6b00,#ffb000);
    z-index: 999999;
    transition: .15s;
}

.mouseGlow {
    position: fixed;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,120,0,.20), transparent 70%);
    pointer-events: none;
    transform: translate(-50%,-50%);
    filter: blur(30px);
    z-index: -1;
}

.particle {
    position: fixed;
    bottom: -20px;
    width: 5px;
    height: 5px;
    background: #ff8800;
    border-radius: 50%;
    opacity: .35;
    animation: particleFloat linear infinite;
    pointer-events: none;
}

@keyframes particleFloat {

    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(-120vh);
        opacity: 0;
    }
}

header {
    transition: .35s;
}
/*========================
PART 1D SUPPORT
========================*/

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    transform: scale(0);
    animation: ripple .7s linear;
    pointer-events: none;
}

@keyframes ripple {

    to {
        transform: scale(4);
        opacity: 0;
    }
}

.primary-btn,
.join-btn,
.download-btn-main {
    overflow: hidden;
    position: relative;
}

.confetti {
    position: fixed;
    top: -20px;
    width: 10px;
    height: 14px;
    animation: confettiFall linear forwards;
    z-index: 99999;
}

@keyframes confettiFall {

    0% {
        transform: translateY(0) rotate(0);
    }

    100% {
        transform: translateY(110vh) rotate(720deg);
        opacity: 0;
    }
}
/*========================
SCRIPT PART 1E SUPPORT
========================*/

.live-popup {
    position: fixed;
    left: 25px;
    bottom: 25px;
    padding: 18px 22px;
    background: rgba(15,15,15,.92);
    border: 1px solid rgba(255,107,0,.35);
    border-radius: 16px;
    backdrop-filter: blur(18px);
    font-size: 15px;
    transform: translateY(120px);
    opacity: 0;
    transition: .45s;
    z-index: 99999;
    box-shadow: 0 15px 40px rgba(0,0,0,.45);
}

.showPopup {
    opacity: 1;
    transform: translateY(0);
}

.backTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff6b00,#ff9a00);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(255,107,0,.35);
    z-index: 99999;
}

.showTop {
    opacity: 1;
    pointer-events: auto;
}

.backTop:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(255,107,0,.45);
}