*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}


body{
    background:#0d1117;
    color:white;
    overflow-x:hidden;
}
html{

    scroll-behavior:smooth;

}


/* =====================
   PARTICLES
===================== */


#particles{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
}


.particle{
    position:absolute;
    width:7px;
    height:7px;
    background:#00e5ff;
    border-radius:50%;
    box-shadow:0 0 20px #00e5ff;
    animation:move 8s linear infinite;
}


@keyframes move{

    from{
        transform:translateY(100vh);
    }

    to{
        transform:translateY(-10vh);
    }

}



/* =====================
   NAVBAR
===================== */


nav{

    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 80px;

    position:fixed;
    top:0;
    width:100%;

    background:rgba(13,17,23,.75);
    backdrop-filter:blur(15px);

    z-index:100;

}



.logo{

    font-size:30px;
    font-weight:700;
    color:#00e5ff;

}



nav ul{

    display:flex;
    gap:35px;
    list-style:none;

}



nav ul li a{

    color:white;
    text-decoration:none;
    transition:.3s;

}



nav ul li a:hover{

    color:#00e5ff;

}





/* =====================
   HERO SECTION
===================== */


.hero{

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    gap:100px;

    background:
    linear-gradient(135deg,#0d1117,#111827,#1e293b);

}



.hero-content{

    text-align:center;

}



.hero h1{

    font-size:70px;

    background:
    linear-gradient(90deg,#00e5ff,#8b5cf6);

    -webkit-background-clip:text;

    color:transparent;

}



.hero p{

    font-size:22px;
    color:#ccc;
    margin:25px;

}



.hero button{

    padding:16px 40px;

    border:none;
    border-radius:40px;

    background:#00e5ff;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}



.hero button:hover{

    transform:scale(1.08);

    box-shadow:0 0 25px #00e5ff;

}




.gaming-box{

    height:250px;
    width:250px;

    border-radius:30px;

    background:
    linear-gradient(135deg,#00e5ff,#8b5cf6);

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:100px;

    animation:float 3s infinite;

}



@keyframes float{

    50%{
        transform:translateY(-20px);
    }

}





/* =====================
   SEARCH
===================== */


.search-section{

    padding:100px 20px 40px;

    text-align:center;

}



.search-section input{

    width:500px;
    max-width:90%;

    padding:18px 25px;

    border-radius:40px;

    border:none;

    outline:none;

    background:#111827;

    color:white;

    font-size:18px;

    box-shadow:0 0 25px rgba(0,229,255,.5);

}




/* =====================
   CATEGORY
===================== */


.categories{

    padding:60px 80px;

    text-align:center;

}



.categories h2{

    font-size:45px;

}



.category-box{

    display:flex;

    justify-content:center;

    gap:30px;

    margin-top:40px;

    flex-wrap:wrap;

}



.category-box div{

    width:200px;

    padding:30px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.1);

    border-radius:20px;

    font-size:45px;

    backdrop-filter:blur(10px);

    transition:.3s;

}



.category-box h3{

    font-size:18px;

    margin-top:15px;

}



.category-box div:hover{

    transform:translateY(-12px);

    box-shadow:0 0 30px #00e5ff;

}




/* =====================
   FEATURED GAMES
===================== */


.featured{

    padding:80px;

    text-align:center;

}



.featured h2{

    font-size:45px;

    margin-bottom:50px;

}



.games-container{

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

    gap: 30px;

    margin-top: 30px;

}
/* =====================
   PREMIUM GAME CARD
===================== */


.game-card{

    width:280px;

    padding:25px;

    background:
    rgba(17,24,39,.85);

    border-radius:25px;

    border:1px solid rgba(255,255,255,.1);

    position:relative;

    overflow:hidden;

    transition:.4s;

    cursor:pointer;

}



.game-card:hover{

    transform:translateY(-15px);

    box-shadow:
    0 0 35px #00e5ff;

}




.game-card img{

    width:100%;

    height:200px;

    object-fit:cover;

    border-radius:18px;

    transition:.4s;

}



.game-card:hover img{

    transform:scale(1.08);

}





.game-info h3{

    font-size:25px;

    margin-top:20px;

}



.game-info p{

    color:#aaa;

    margin:10px 0;

}



.game-info h4{

    color:#00e5ff;

    font-size:28px;

}






/* DISCOUNT BADGE */


.discount{

    position:absolute;

    top:15px;

    right:15px;

    background:#ff0055;

    padding:8px 15px;

    border-radius:20px;

    font-weight:bold;

    z-index:2;

}






/* RATING */


.rating{

    margin:15px 0;

    font-size:18px;

}






/* BUY BUTTON */


.game-card button{

    margin-top:20px;

    width:100%;

    padding:14px;

    border:none;

    border-radius:30px;

    background:#00e5ff;

    color:black;

    font-size:17px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}



.game-card button:hover{

    transform:scale(1.05);

    box-shadow:0 0 25px #00e5ff;

}





/* =====================
   PRODUCT PAGE
===================== */


.product-page{

    min-height:100vh;

    padding:140px 80px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:70px;

    flex-wrap:wrap;

}



.product-image img{

    width:450px;

    height:450px;

    object-fit:cover;

    border-radius:30px;

    box-shadow:0 0 40px #00e5ff;

}




.product-info{

    max-width:500px;

}



.product-info h1{

    font-size:60px;

    background:
    linear-gradient(90deg,#00e5ff,#8b5cf6);

    -webkit-background-clip:text;

    color:transparent;

}



.product-info h2{

    color:#00e5ff;

    font-size:40px;

}




.product-info p{

    color:#ccc;

    line-height:1.7;

}




.buy-btn{

    margin-top:30px;

    padding:16px 50px;

    border:none;

    border-radius:40px;

    background:#00e5ff;

    font-weight:bold;

    cursor:pointer;

}



.buy-btn:hover{

    box-shadow:0 0 30px #00e5ff;

}







/* =====================
   CART
===================== */


.cart-page{

    padding:140px 80px;

}



.cart-box{

    display:flex;

    gap:30px;

    align-items:center;

    background:#111827;

    padding:30px;

    border-radius:25px;

}



.cart-box img{

    width:220px;

    height:140px;

    object-fit:cover;

    border-radius:18px;

}




.cart-info h3{

    color:#00e5ff;

}





/* =====================
   MOBILE RESPONSIVE
===================== */


@media(max-width:900px){


nav{

    padding:0 20px;

}



nav ul{

    display:none;

}



.hero{

    flex-direction:column;

    text-align:center;

}



.hero h1{

    font-size:45px;

}



.gaming-box{

    height:180px;

    width:180px;

}



.featured,
.categories{

    padding:50px 20px;

}


}
/* =========================
   TRENDING GAMING BANNER
========================= */


.trending-banner{

    margin:80px;

    padding:70px;

    border-radius:35px;

    position:relative;

    overflow:hidden;

    background:

    linear-gradient(
    135deg,
    rgba(0,229,255,.15),
    rgba(139,92,246,.25)
    );

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    text-align:center;

}





.trending-banner::before{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:#00e5ff;

    filter:blur(120px);

    top:-100px;

    left:-100px;

    opacity:.5;

}





.trending-banner::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:#8b5cf6;

    filter:blur(120px);

    bottom:-100px;

    right:-100px;

    opacity:.5;

}





.trending-banner div{

    position:relative;

    z-index:2;

}





.trending-banner h1{

    font-size:55px;

    background:

    linear-gradient(
    90deg,
    #00e5ff,
    #8b5cf6
    );

    -webkit-background-clip:text;

    color:transparent;

}





.trending-banner p{

    color:#ccc;

    font-size:20px;

    margin:20px 0 35px;

}





.trending-banner button{


    padding:16px 45px;

    border:none;

    border-radius:50px;

    background:#00e5ff;

    color:black;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.4s;

}





.trending-banner button:hover{


    transform:translateY(-5px) scale(1.05);

    box-shadow:

    0 0 20px #00e5ff,
    0 0 50px #00e5ff;

}




.trending-banner button:active{

    transform:scale(.95);

}
/* =========================
   GAME SLIDER
========================= */


.game-container{

    display:flex;

    gap:30px;

    overflow-x:auto;

    scroll-behavior:smooth;

    padding:20px;

}



.game-container::-webkit-scrollbar{

    display:none;

}



.game-card{

    flex:0 0 280px;

}





/* SLIDER BUTTONS */


.slider-controls{

    display:flex;

    justify-content:flex-end;

    gap:15px;

    margin-bottom:25px;

    padding-right:80px;

}



.slider-controls button{

    width:55px;

    height:55px;

    border-radius:50%;

    border:none;

    background:#111827;

    color:#00e5ff;

    font-size:25px;

    cursor:pointer;

    transition:.3s;

    border:1px solid rgba(0,229,255,.3);

}



.slider-controls button:hover{

    background:#00e5ff;

    color:black;

    transform:scale(1.1);

    box-shadow:0 0 25px #00e5ff;

}
/* =========================
 PREMIUM GAME CARD EFFECT
========================= */


.game-card{

position:relative;

overflow:hidden;

}



.game-card img{

width:100%;

height:200px;

object-fit:cover;

transition:.5s;

}



.game-card:hover img{

transform:scale(1.1);

}





/* DARK OVERLAY */


.card-overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:200px;

background:rgba(0,0,0,.65);

display:flex;

align-items:center;

justify-content:center;

opacity:0;

transition:.4s;

z-index:3;

}



.game-card:hover .card-overlay{

opacity:1;

}





.quick-btn{

padding:12px 30px;

border-radius:30px;

border:none;

background:#00e5ff;

font-weight:bold;

cursor:pointer;

}





.quick-btn:hover{

box-shadow:0 0 25px #00e5ff;

}





/* DISCOUNT */


.discount{

position:absolute;

top:15px;

left:15px;

background:#ff0055;

padding:8px 15px;

border-radius:20px;

font-weight:bold;

z-index:5;

}





/* WISHLIST */


.wishlist{

position:absolute;

top:15px;

right:15px;

background:#111827;

width:40px;

height:40px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:20px;

cursor:pointer;

z-index:5;

transition:.3s;

}



.wishlist:hover{

transform:scale(1.2);

box-shadow:0 0 20px #ff0055;

}





/* RATING */


.rating{

margin:15px 0;

font-size:16px;

}
/* =========================
 QUICK VIEW MODAL
========================= */


.quick-modal{

display:none;

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.75);

backdrop-filter:blur(10px);

align-items:center;

justify-content:center;

z-index:999;


}



.modal-box{

width:450px;

background:#111827;

padding:35px;

border-radius:30px;

text-align:center;

position:relative;

box-shadow:0 0 40px #00e5ff;


}



.modal-box img{

width:100%;

height:220px;

object-fit:cover;

border-radius:20px;

}



.modal-box h2{

font-size:35px;

margin:20px 0;

}



.modal-box p{

color:#aaa;

}



.modal-box h3{

color:#00e5ff;

font-size:30px;

margin:15px;

}



.close-modal{

position:absolute;

right:20px;

top:20px;

border:none;

background:#ff0055;

color:white;

width:35px;

height:35px;

border-radius:50%;

cursor:pointer;

}



.buy-modal{

padding:15px 45px;

border:none;

border-radius:30px;

background:#00e5ff;

font-weight:bold;

cursor:pointer;

}
/* =========================
   CLEAN CART CHECKOUT
========================= */


.checkout-box{

    margin:40px auto;

    max-width:450px;

    padding:30px;

    background:#111827;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.1);

    text-align:center;

}





.checkout-box h2{

    font-size:28px;

    color:white;

    margin-bottom:20px;

}





#total-price{

    display:inline;

    font-size:32px;

    font-weight:700;

    color:#00e5ff;

}





.checkout-box button{

    margin-top:25px;

    width:100%;

    padding:15px;

    border:none;

    border-radius:30px;

    background:#00e5ff;

    color:black;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}





.checkout-box button:hover{

    transform:translateY(-3px);

    background:white;

}
/* =========================
 CHECKOUT PAGE
========================= */


.checkout-page{

padding:130px 20px;

display:flex;

justify-content:center;

}




.checkout-card{

width:600px;

background:#111827;

padding:40px;

border-radius:25px;

border:1px solid rgba(255,255,255,.1);

}




.checkout-card h1{

text-align:center;

margin-bottom:30px;

}




.order-item{

display:flex;

gap:20px;

align-items:center;

background:#0d1117;

padding:15px;

border-radius:15px;

margin:15px 0;

}



.order-item img{

width:90px;

height:60px;

object-fit:cover;

border-radius:10px;

}



.checkout-total{

color:#00e5ff;

margin:25px 0;

}




.customer-form input{

width:100%;

padding:15px;

margin:10px 0;

border:none;

border-radius:10px;

background:#0d1117;

color:white;

}



.customer-form button{

width:100%;

padding:16px;

margin-top:20px;

border:none;

border-radius:30px;

background:#00e5ff;

font-size:18px;

font-weight:bold;

cursor:pointer;

}
.user-profile{

    color:white;

    text-decoration:none;

    padding:10px 18px;

    border-radius:25px;

    background:

    linear-gradient(
    135deg,
    #8b5cf6,
    #00d9ff
    );

    font-weight:500;

}