*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Inter,Arial,sans-serif;
background:#050816;
color:#fff;
overflow-x:hidden;
}

.bg-grid{
position:fixed;
inset:0;
background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
background-size:40px 40px;
z-index:-2;
}

body::before{
content:"";
position:fixed;
inset:0;
background:radial-gradient(circle at top left,#00ffff22,transparent 30%),radial-gradient(circle at bottom right,#8b5cf622,transparent 30%);
filter:blur(60px);
z-index:-1;
}

.navbar{
position:sticky;
top:0;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
backdrop-filter:blur(18px);
background:rgba(10,10,20,.5);
border-bottom:1px solid rgba(255,255,255,.08);
z-index:50;
}

.logo{
font-size:28px;
font-weight:800;
background:linear-gradient(90deg,#00ffff,#8b5cf6);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

nav{
display:flex;
gap:20px;
}

nav a{
text-decoration:none;
color:#fff;
font-size:14px;
transition:.3s;
}

nav a:hover{
color:#00ffff;
}

.hero{
padding:100px 8% 60px;
text-align:center;
}

.hero h1{
font-size:64px;
font-weight:900;
line-height:1.1;
margin-bottom:20px;
background:linear-gradient(90deg,#fff,#00ffff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
max-width:700px;
margin:auto;
color:#b8b8c7;
font-size:18px;
}

.search-box{
margin-top:40px;
}

.search-box input{
width:min(900px,100%);
padding:20px;
border-radius:18px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
color:#fff;
font-size:18px;
outline:none;
backdrop-filter:blur(10px);
}

.stats{
display:flex;
gap:20px;
justify-content:center;
margin-top:40px;
flex-wrap:wrap;
}

.stat-card{
width:180px;
padding:24px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:22px;
backdrop-filter:blur(16px);
}

.stat-card span{
font-size:34px;
font-weight:800;
color:#00ffff;
}

.filters{
display:flex;
gap:12px;
flex-wrap:wrap;
padding:0 8% 30px;
}

.filter-btn{
padding:12px 18px;
border-radius:999px;
border:none;
background:rgba(255,255,255,.06);
color:#fff;
cursor:pointer;
transition:.3s;
}

.filter-btn.active,
.filter-btn:hover{
background:#00ffff;
color:#000;
}

.games-section{
padding-bottom:80px;
}

.game-section{
padding:0 8% 60px;
}

.game-header{
display:flex;
align-items:center;
gap:20px;
margin-bottom:25px;
}

.game-banner{
width:90px;
height:90px;
object-fit:cover;
border-radius:20px;
border:1px solid rgba(255,255,255,.08);
}

.game-info h2{
font-size:32px;
margin-bottom:6px;
}

.game-info p{
color:#b6b6c4;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:22px;
}

.card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
border-radius:26px;
padding:24px;
backdrop-filter:blur(16px);
transition:.35s;
position:relative;
overflow:hidden;
}

.card::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(135deg,#00ffff11,#8b5cf611);
opacity:0;
transition:.35s;
pointer-events:none;
}

.card:hover::before{
opacity:1;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,255,255,.12);
}

.badge {
padding:6px 14px;
border-radius:999px;
font-size:12px;
font-weight:700;
}

.active-badge{
background:#00ff9d22;
color:#00ff9d;
}

.expired-badge{
background:#ff3b3b22;
color:#ff5d5d;
}

.reward{
margin-top:14px;
color:#c8c8d4;
}

.code-box{
margin-top:18px;
display:flex;
justify-content:space-between;
align-items:center;
padding:14px;
background:#0b1020;
border-radius:16px;
}

.code{
font-size:18px;
font-weight:800;
color:#00ffff;
}

.copy-btn{
padding:10px 16px;
border:none;
border-radius:12px;
background:#00ffff;
color:#000;
font-weight:700;
cursor:pointer;
position:relative;
z-index:2;
}

.meta{
display:flex;
justify-content:space-between;
margin-top:16px;
font-size:13px;
color:#9e9eb0;
}

#toast{
position:fixed;
left:50%;
bottom:30px;
transform:translateX(-50%);
background:#00ffff;
color:#000;
padding:14px 24px;
border-radius:999px;
font-weight:700;
font-size:14px;
z-index:99999;
opacity:0;
pointer-events:none;
transition:.3s;
}

#toast.show{
opacity:1;
bottom:50px;
}

footer{
padding:30px 8%;
border-top:1px solid rgba(255,255,255,.08);
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:20px;
}

.footer-links{
display:flex;
gap:18px;
}

.footer-links a{
text-decoration:none;
color:#bcbcc9;
}

@media(max-width:768px){
.hero h1{
font-size:42px;
}

.navbar{
flex-direction:column;
gap:15px;
}

.game-header{
flex-direction:column;
align-items:flex-start;
}
}

.seo-section{
padding:80px 8%;
}

.seo-container{
max-width:1000px;
margin:auto;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:30px;
padding:40px;
backdrop-filter:blur(16px);
}

.seo-container h2{
font-size:42px;
margin-bottom:20px;
}

.seo-container h3{
margin-top:30px;
margin-bottom:14px;
font-size:24px;
}

.seo-container p{
line-height:1.9;
color:#c8c8d4;
margin-bottom:18px;
}

.seo-container ul{
padding-left:20px;
color:#c8c8d4;
line-height:2;
}

.faq-section{
padding:80px 8%;
}

.faq-container{
max-width:1000px;
margin:auto;
}

.faq-container h2{
font-size:42px;
margin-bottom:40px;
text-align:center;
}

.faq-item{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:24px;
padding:28px;
margin-bottom:20px;
backdrop-filter:blur(16px);
transition:.3s;
}

.faq-item:hover{
transform:translateY(-4px);
border-color:#00ffff55;
}

.faq-item h3{
font-size:22px;
margin-bottom:12px;
color:#00ffff;
}

.faq-item p{
color:#c7c7d4;
line-height:1.8;
}

.social-section{
padding:40px 8%;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:20px;
}

.social-card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
border-radius:28px;
padding:24px;
display:flex;
justify-content:space-between;
align-items:center;
backdrop-filter:blur(18px);
transition:.35s;
overflow:hidden;
position:relative;
}

.social-card::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(135deg,#00ffff11,#8b5cf611);
opacity:0;
transition:.35s;
pointer-events:none;
}

.social-card:hover::before{
opacity:1;
}

.social-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,255,255,.12);
}

.social-left{
display:flex;
align-items:center;
gap:18px;
z-index:2;
}

.social-icon{
width:62px;
height:62px;
border-radius:18px;
display:flex;
align-items:center;
justify-content:center;
}

.social-icon svg{
width:30px;
height:30px;
fill:#fff;
}

.youtube-icon{
background:#ff000022;
}

.facebook-icon{
background:#1877f222;
}

.social-card h3{
font-size:22px;
margin-bottom:4px;
}

.social-card p{
color:#b9b9c9;
font-size:14px;
}

.social-card a{
padding:12px 18px;
border-radius:14px;
background:#00ffff;
color:#000;
font-weight:700;
text-decoration:none;
z-index:2;
}

.live-section{
padding:80px 8%;
}

.live-header{
display:flex;
align-items:center;
gap:12px;
margin-bottom:26px;
}

.live-dot{
width:14px;
height:14px;
border-radius:50%;
background:#ff2b2b;
box-shadow:0 0 18px #ff2b2b;
animation:pulse 1.2s infinite;
}

@keyframes pulse{
0%{
transform:scale(1);
opacity:1;
}
50%{
transform:scale(1.4);
opacity:.5;
}
100%{
transform:scale(1);
opacity:1;
}
}

.live-header h2{
font-size:38px;
}

.live-wrapper{
position:relative;
padding-top:56.25%;
border-radius:32px;
overflow:hidden;
border:1px solid rgba(255,255,255,.08);
background:rgba(255,255,255,.04);
box-shadow:0 20px 60px rgba(0,255,255,.12);
}

.live-wrapper iframe{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
border:none;
}

.logo-link{
text-decoration:none;
display:flex;
align-items:center;
}

.new-badge {
background:#ff2b2b22;
color:#ff2b2b;
padding:6px 14px;
border-radius:999px;
font-size:12px;
font-weight:700;
animation:pulse-glow-red 2s infinite;
}

.card-badges {
display:flex;
gap:10px;
margin-bottom:14px;
align-items:center;
}

.active-badge {
background:#00ff9d22;
color:#00ff9d;
}

.expired-badge {
background:#ff3b3b22;
color:#ff5d5d;
}

.new-card-glow {
  border-color: #ff2b2b55;
  box-shadow: 0 10px 30px rgba(255, 43, 43, 0.12);
}

@keyframes pulse-glow-red {
  0% { box-shadow: 0 0 0 0 rgba(255, 43, 43, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(255, 43, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 43, 43, 0); }
}