
.hero-banner{

position:relative;
height:180px;

border-radius:20px;

overflow:hidden;

margin-bottom:25px;

background:
linear-gradient(
135deg,
#0f172a,
#1e3a8a,
#2563eb
);

display:flex;
align-items:center;
justify-content:center;

box-shadow:
0 0 25px rgba(37,99,235,0.5);

}

.slide{

position:absolute;

font-size:28px;
font-weight:bold;

color:white;

opacity:0;

transition:1s;

text-align:center;
padding:20px;

}

.slide.active{

opacity:1;

}

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

body{
overflow-x:hidden;
min-height:100vh;
display:flex;
flex-direction:column;
}

.products{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(150px,1fr));

gap:15px;

min-height:700px;

align-content:start;
}

.promo-hero {
  height: 100vh;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.promo-tag {
  background: #ff3b3b;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 0.9rem;
  animation: pop 0.5s ease;
}

.promo-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  transition: opacity 0.4s ease;
}

.promo-hero p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 20px;
  transition: opacity 0.4s ease;
}

.promo-actions {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.primary {
  background: #00c2ff;
  color: black;
}

.secondary {
  border: 1px solid white;
  color: white;
}

.btn:hover {
  transform: translateY(-3px);
}

@keyframes pop {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.gaming-banner {
  height: 70vh;
  background: radial-gradient(circle at top, #1b1f3a, #0b0f1a);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

/* glow effect background */
.gaming-banner::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #6c5ce7;
  filter: blur(120px);
  top: -100px;
  left: -100px;
  opacity: 0.4;
}

.gaming-banner::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #00c2ff;
  filter: blur(120px);
  bottom: -120px;
  right: -120px;
  opacity: 0.3;
}

.badge {
  background: #ff3b3b;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  z-index: 2;
}

.gaming-banner h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  z-index: 2;
}

.gaming-banner p {
  opacity: 0.85;
  margin-bottom: 20px;
  z-index: 2;
}

.game-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  z-index: 2;
}

.game-tags span {
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
}

.cta-btn {
  padding: 12px 24px;
  background: linear-gradient(90deg, #00c2ff, #6c5ce7);
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s;
  z-index: 2;
}

.cta-btn:hover {
  transform: scale(1.05);
}

.card{
width:100%;
overflow:hidden;
}

.popup-box{
width:90%;
max-width:400px;
margin:auto;
}

.popup-box input{
width:100%;
max-width:100%;
}

.popup-box button{
width:100%;
max-width:100%;
}

.footer{
margin-top:auto;
}

.game-grid{

display:grid;

grid-template-columns:
repeat(2,1fr);

gap:20px;

margin-top:30px;

}

.game-card{

position:relative;
overflow:hidden;

height:180px;

border-radius:20px;

background:#111827;
  
cursor:pointer;

transition:0.3s;

cursor:pointer;

transition:0.35s ease;

box-shadow:
0 0 20px rgba(59,130,246,0.15);

}

.game-card img{

width:100%;
height:100%;

object-fit:cover;

transition:0.4s;

filter:brightness(0.8);

}

.game-card:hover img{

transform:scale(1.08);

filter:brightness(1);

transform:translateY(-5px);

box-shadow:0 0 25px rgba(59,130,246,0.5);

transform:
translateY(-6px)
scale(1.02);

box-shadow:
0 0 30px rgba(59,130,246,0.45);
  
}

.game-card h2{

position:absolute;
bottom:15px;
left:15px;

color:white;
font-size:20px;
font-weight:bold;

text-shadow:0 0 10px black;

}

.game-name{

position:absolute;

bottom:15px;
left:15px;

color:white;

font-size:18px;
font-weight:bold;

text-shadow:0 0 15px rgba(0,0,0,0.4);;

}

.game-menu{

display:flex;
gap:10px;
margin-bottom:20px;
flex-wrap:wrap;

}

.game-menu button{

padding:12px 18px;
border:none;
border-radius:12px;
background:#1e293b;
color:white;
cursor:pointer;
font-weight:bold;
transition:0.3s;

}

.game-menu button:hover{

background:#2563eb;

}

#nicknameBox{

margin-top:10px;
padding:10px;
background:#111827;
border-radius:10px;
color:#00ff99;
font-size:14px;

}

.result-box{
display:none;
margin-top:15px;
padding:15px;
border-radius:14px;
text-align:center;
font-weight:bold;
}

.success{
background:#064e3b;
color:#6ee7b7;
}

.failed{
background:#7f1d1d;
color:#fca5a5;
}

.loading{
display:none;
margin-top:15px;
background:#111827;
padding:14px;
border-radius:14px;
text-align:center;
color:#60a5fa;
font-weight:bold;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:
radial-gradient(circle at top right,#1e3a8a 0%,transparent 30%),
radial-gradient(circle at bottom left,#0f766e 0%,transparent 30%),
#020617;
color:white;
padding:25px;
min-height:100vh;
overflow-x:hidden;
}

/* HEADER */

.logo{

font-size:30px;

font-weight:700;

color:white;

display:flex;

align-items:center;

gap:8px;

}

.title{
font-size:42px;
font-weight:bold;
margin-bottom:10px;
}

.subtitle{
font-size:17px;
color:#cbd5e1;
}

/* SEARCH */

.search-box{
margin-top:26px;
margin-bottom:25px;
}

.search-box input{
width:100%;
padding:17px;
border:none;
outline:none;
border-radius:18px;
background:#0f172a;
color:white;
font-size:16px;
}

/* PRODUCTS */

.products{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:15px;

min-height:auto;

align-content:start;

}

/* CARD */

.card{
background:rgba(15,23,42,0.85);
border:1px solid rgba(255,255,255,0.05);
padding:22px;
border-radius:24px;
backdrop-filter:blur(10px);
transition:0.3s;
box-shadow:
0 0 15px rgba(59,130,246,0.08);
width:100%;
box-sizing:border-box;

}

.card:hover{
transform:translateY(-4px);
box-shadow:
0 0 20px rgba(59,130,246,0.2);
}

.card h2{
font-size:22px;
margin-bottom:12px;
}

.price{
font-size:20px;
font-weight:bold;
color:#60a5fa;
margin-bottom:18px;
}

.buy-btn{
width:100%;
padding:14px;
border:none;
border-radius:16px;
background:linear-gradient(to right,#3b82f6,#8b5cf6);
color:white;
font-size:15px;
font-weight:bold;
cursor:pointer;
transition:0.2s;
}

.buy-btn:hover{
opacity:0.9;
}

/* MOBILE */

{@media(max-width:700px)}

.products{
grid-template-columns:1fr;
}

.title{
font-size:34px;
}

.popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.75);
display:none;
justify-content:center;
align-items:center;
z-index:999;
padding:20px;
}

.popup-box{
background:#0f172a;
width:100%;
max-width:420px;
padding:30px;
border-radius:24px;
border:1px solid rgba(255,255,255,0.05);
box-shadow:
0 0 30px rgba(59,130,246,0.2);
}

.popup-box input::placeholder{
color:#94a3b8;
}

.popup-box h2{
font-size:28px;
margin-bottom:10px;
}

.product-price{
font-size:22px;
font-weight:bold;
color:#60a5fa;
margin-bottom:25px;
}

.popup-box input{
width:100%;
padding:15px;
border:none;
outline:none;
border-radius:14px;
background:#1e293b;
color:white;
font-size:16px;
margin-bottom:15px;
}

.nickname{
background:#111827;
padding:14px;
border-radius:14px;
margin-bottom:20px;
color:#cbd5e1;
}

.popup-box button{
width:100%;
padding:15px;
border:none;
border-radius:14px;
background:linear-gradient(to right,#3b82f6,#8b5cf6);
color:white;
font-size:16px;
font-weight:bold;
margin-top:10px;
cursor:pointer;
}

.close-btn{
background:#ef4444 !important;
}

}

.features{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:15px;

padding:20px;

margin-top:30px;

}

.feature-box{

background:#091428;

border-radius:20px;

padding:20px;

text-align:center;

box-shadow:
0 0 20px rgba(59,130,246,0.2);

}

.feature-box:hover{

transform:translateY(-5px);

box-shadow:
0 0 25px rgba(59,130,246,0.5);

}

.feature-box:hover{

transform:translateY(-5px);

box-shadow:
0 0 25px rgba(59,130,246,0.5);

}

.feature-box h3{

color:white;

margin-bottom:10px;

}

.feature-box p{

color:#9ca3af;

font-size:14px;

}

.footer{

margin-top:50px;

padding:40px 20px;

background:#091428;

text-align:center;

border-top:
1px solid rgba(255,255,255,0.1);

}

.footer h2{

color:white;

margin-bottom:10px;

}

.footer p{

color:#9ca3af;

margin-bottom:15px;

}

.footer-links{

display:flex;

justify-content:center;

align-items:center;

gap:14px;

flex-wrap:wrap;

margin-top:15px;

}

.footer-links a{

display:flex;

align-items:center;

justify-content:center;

gap:6px;

min-width:110px;

padding:10px 16px;

border-radius:14px;

background:#111827;

color:#e2e8f0 !important;

text-decoration:none;

font-size:14px;

font-weight:600;

transition:0.3s;

border:
1px solid rgba(255,255,255,0.05);

}

.footer-links a:hover{

transform:translateY(-3px);

background:#1e293b;

color:white;

box-shadow:
0 0 18px rgba(59,130,246,0.35);

}

.footer-links a:nth-child(1){

color:#22c55e !important;

}

.footer-links a:nth-child(2){

color:#c084fc !important;

}

.footer-links a:nth-child(3){

color:#60a5fa !important;

}

.footer-links a:nth-child(1):hover{

box-shadow:
0 0 18px rgba(34,197,94,0.5);

}

.footer-links a:nth-child(2):hover{

box-shadow:
0 0 18px rgba(192,132,252,0.5);

}

.footer-links a:nth-child(3):hover{

box-shadow:
0 0 18px rgba(96,165,250,0.5);

}

.copyright{

font-size:13px;

color:#6b7280;

}

.promo-banner{

height:220px;

border-radius:24px;

margin-top:20px;

padding:25px;

display:flex;

align-items:center;

background:
linear-gradient(
135deg,
#0f172a,
#1e3a8a
);

box-shadow:
0 0 25px rgba(59,130,246,0.25);

}

.promo-content h1{

color:white;

font-size:30px;

margin-bottom:10px;

}

.promo-content p{

color:#cbd5e1;

margin-bottom:20px;

}

.promo-content a{

display:inline-block;

padding:10px 18px;

background:#3b82f6;

color:white !important;

text-decoration:none;

border-radius:12px;

font-weight:bold;

transition:0.3s;

}

.promo-content a:hover{

background:#2563eb;

transform:scale(1.05);

}

.mini-event{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:15px;

margin-top:20px;

}

.event-card{

padding:18px;

border-radius:18px;

}

.event-card::before{

content:"";

position:absolute;

width:120px;
height:120px;

background:
rgba(59,130,246,0.15);

border-radius:50%;

top:-40px;
right:-40px;

filter:blur(35px);

}

.event-card:hover{

transform:translateY(-5px);

box-shadow:
0 0 25px rgba(59,130,246,0.35);

}

.event-card h3{

color:white;

font-size:16px;

margin-bottom:6px;

position:relative;

z-index:2;

display:block;

}

.event-card p{

color:#cbd5e1;

font-size:13px;

line-height:1.5;

position:relative;

z-index:2;

text-align:left !important;

margin:0 !important;

display:block;

}

.event-text{

display:flex;

flex-direction:column;

gap:6px;

}

.navbar{

display:flex;

align-items:center;

gap:15px;

padding:10px 15px;

background:#081028;

border-radius:15px;

margin-bottom:10px;

}

.menu-btn{

font-size:20px;

color:white;

cursor:pointer;

width:30px;

height:30px;

display:flex;

align-items:center;

justify-content:center;

}

.logo{

font-size:20px;

font-weight:700;

color:white;

}

.search-container{

flex:1;

display:flex;

justify-content:flex-end;

}

#searchInput{

width:120px;

height:32px;

border:none;

outline:none;

padding:0 10px;

border-radius:8px;

background:rgba(255,255,255,0.1);

color:white;

font-size:14px;

}

#searchInput::placeholder{

color:rgba(255,255,255,0.7);

}

.side-menu{

position:fixed;

top:0;

left:-280px;

width:200px;

height:100vh;

background:rgba(8,15,40,0.95);

backdrop-filter:blur(20px);

-webkit-backdrop-filter:blur(20px);

padding:30px;

display:flex;

flex-direction:column;

gap:18px;

transition:0.3s;

z-index:1001;

}

.side-menu.active{

left:0;

}

.side-menu a{

color:white;

text-decoration:none;

font-size:18px;

font-weight:600;

padding:12px 0;

border-bottom:1px solid rgba(255,255,255,0.08);

}

.close-btn{

display:inline-flex;

align-items:center;

justify-content:center;

width:40px;

height:40px;

font-size:24px;

color:white;

cursor:pointer;

border-radius:10px;

margin-bottom:25px;

}

.overlay{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,0.5);

display:none;

z-index:1000;

}

.overlay.active{

display:block;

}

