/* ===== FIRE CLUB STYLE ===== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:linear-gradient(135deg,#090909,#190000,#3b0000);
color:#fff;
overflow-x:hidden;
}

/* Container */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* Header */

.header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:rgb(58, 3, 3);
backdrop-filter:blur(15px);
border-bottom:1px solid rgb(51, 3, 3);
}

.header .container{
display:flex;
align-items:center;
justify-content:space-between;
padding:16px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#fff;
    font-size:32px;
    font-weight:700;
    cursor:pointer;
}

.logo img{
width:58px;
height:58px;
border-radius:12px;
}

.logo span{
font-size:28px;
font-weight:700;
color:#fff;
}

nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav ul li a{
color:#fff;
text-decoration:none;
font-weight:500;
transition:.3s;
}

nav ul li a:hover{
color:#ff3b3b;
}

/* Buttons */

.buttons{
display:flex;
gap:12px;
}

.login-btn,
.register-btn,
.btn-red,
.btn-dark,
.download-btn,
.play-btn{
padding:12px 28px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.35s;
display:inline-block;
}

.login-btn{
background:transparent;
border:2px solid #ff3030;
color:#fff;
}

.login-btn:hover{
background:#ff3030;
}

.register-btn,
.btn-red,
.download-btn,
.play-btn{
background:linear-gradient(45deg,#ff0000,#ff7300);
color:#fff;
}

.register-btn:hover,
.btn-red:hover,
.download-btn:hover,
.play-btn:hover{
transform:translateY(-4px);
box-shadow:0 0 25px rgba(255,0,0,.45);
}

.btn-dark{
background:#1b1b1b;
color:#fff;
border:1px solid #444;
}

/* Hero */

.hero{
padding:170px 0 00px;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;
}

.hero-left h1{
font-size:62px;
line-height:1.15;
margin-bottom:20px;
}

.hero-left span{
color:#ff2a2a;
}

.hero-left p{
font-size:18px;
line-height:1.8;
color:#ddd;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:20px;
margin-bottom:40px;
}

.hero-box{
display:flex;
gap:25px;
flex-wrap:wrap;
}

.hero-box div{
background:rgba(255,255,255,.05);
padding:20px 25px;
border-radius:18px;
text-align:center;
border:1px solid rgba(255,255,255,.08);
}

.hero-right{
text-align:center;
}

.hero-right img{
width:320px;
max-width:100%;
animation:float 4s infinite ease-in-out;
/*glow*/
filter: drop-shadow(0 0 20px rgba(255,120,0,.8)); 
}

@keyframes float{
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-18px);
    }
}

@keyframes glow{
    from{
        transform: scale(1);
        opacity: .7;
    }
    to{
        transform: scale(1.15);
        opacity: 1;
    }
}


/* Sections */

section{
padding:20px 0;
}

.section-title{
text-align:center;
font-size:42px;
margin-bottom:50px;
}

.cards,
.game-grid,
.counter-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card,
.game-card,
.counter-grid div,
.gift-box,
.download-card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
border-radius:22px;
padding:30px;
transition:.35s;
}

.card:hover,
.game-card:hover{
transform:translateY(-8px);
background:rgba(255,0,0,.12);
}

.card h3,
.game-card h3{
margin:15px 0;
}

.card p,
.game-card p{
color:#ddd;
line-height:1.8;
}

/* Gift */

.gift-code{
display:flex;
gap:12px;
margin-top:20px;
}

.gift-code input{
flex:1;
padding:14px;
border:none;
border-radius:10px;
outline:none;
}

/* About */

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-grid img{
width:260px;
display:block;
margin:auto;
}

.about-grid ul{
margin-top:20px;
padding-left:18px;
}

.about-grid li{
margin:12px 0;
}

/* Footer */

footer{
padding:35px;
text-align:center;
background:#000;
border-top:1px solid rgba(255,255,255,.08);
}

/* Responsive */

@media(max-width:991px){

.hero-grid,
.about-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-buttons{
justify-content:center;
flex-wrap:wrap;
}

nav{
display:none;
}

.logo span{
font-size:22px;
}

.hero-left h1{
font-size:42px;
}

}


/* =========================
   MOBILE RESPONSIVE
========================= */

.menu-btn{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

@media (max-width:991px){

.header .container{
    padding:12px 20px;
}

.logo img{
    width:45px;
    height:45px;
}

.logo span{
    font-size:20px;
}

nav{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#111;
    display:none;
    padding:20px;
}

nav.active{
    display:block;
}

nav ul{
    flex-direction:column;
    gap:18px;
}

.menu-btn{
    display:block;
}

.buttons{
    display:none;
}

.hero{
    padding-top:120px;
}

.hero-grid{
    display:flex;
    flex-direction:column-reverse;
    text-align:center;
    gap:30px;
}

.hero-right img{
    width:180px;
}

.hero-left h1{
    font-size:40px;
}

.hero-left p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
    width:100%;
    gap:15px;
}

.hero-buttons a{
    width:100%;
    text-align:center;
}

.hero-box{
    justify-content:center;
}

.hero-box div{
    width:140px;
}

.cards,
.game-grid,
.counter-grid{
    grid-template-columns:1fr;
}

.about-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.about-grid img{
    width:180px;
    margin-bottom:20px;
}

.download-card{
    flex-direction:column;
    text-align:center;
    gap:20px;
}

.gift-code{
    flex-direction:column;
}

.gift-code button{
    width:100%;
}

}

/* ==========================
   FOOTER
========================== */

/*==============================
        FOOTER
==============================*/

.footer{

    background:#3e0202;

    border-top:1px solid #8d0909;

    padding:22px 0;

}

.footer-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-copy{

    color:#fff;

    font-size:18px;

    font-weight:500;

}

.footer-copy strong{

    color:#ffffff;

}

.footer-menu{

    display:flex;

    gap:30px;

    flex-wrap:wrap;

}

.footer-menu a{

    color:#fff;

    text-decoration:none;

    font-size:17px;

    font-weight:500;

    transition:.3s;

}

.footer-menu a:hover{

    color:#ff3434;

}

/* Mobile */

@media(max-width:768px){

.footer-container{

    flex-direction:column;

    text-align:center;

}

.footer-menu{

    justify-content:center;

    gap:18px;

}

.footer-copy{

    font-size:16px;

}

.footer-menu a{

    font-size:15px;

}

}


/* ==========================
   PAGE CONTENT
========================== */

.page-banner{

padding:120px 0 70px;

text-align:center;

background:linear-gradient(135deg,#0d0d0d,#220000);

}

.page-banner h1{

font-size:48px;

color:#fff;

margin-bottom:20px;

}

.page-banner p{

max-width:850px;

margin:auto;

color:#d5d5d5;

line-height:1.8;

}

.content-page{

padding:70px 0;

}

.content-page h2{

font-size:34px;

color:#ff3b3b;

margin:40px 0 15px;

}

.content-page p{

color:#d0d0d0;

line-height:1.9;

margin-bottom:20px;

}

.content-page ul{

padding-left:20px;

}

.content-page li{

margin-bottom:14px;

color:#ffffff;

}

@media(max-width:768px){

.page-banner{

padding:100px 20px 60px;

}

.page-banner h1{

font-size:34px;

}

.content-page h2{

font-size:28px;

}

}

/* Mobile Menu */

.menu-btn{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

@media(max-width:992px){

.menu-btn{
    display:block;
}

.buttons{
    display:none;
}

nav{

    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#111;
    display:none;

}

nav.active{
    display:block;
}

nav ul{

    flex-direction:column;
    padding:20px;

}

nav ul li{

    margin:15px 0;

}

}

.logo{

display:flex;

align-items:center;

gap:12px;

text-decoration:none;

color:#fff;

cursor:pointer;

}