*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Tahoma,sans-serif;
}

body{
    background:#090909;
    background-image:radial-gradient(circle at top,#7b2cff33,transparent 45%);
    color:white;
    min-height:100vh;
}

.header{
    width:100%;
    height:80px;
    background:#151515;
    border-bottom:2px solid #8a2be2;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 35px;
    box-shadow:0 0 20px rgba(138,43,226,.35);
}

.logo{
    color:#b46cff;
    font-size:34px;
    font-weight:bold;
}

.header-icons{
    display:flex;
    align-items:center;
    gap:15px;
}

.icon-btn,
.profile-btn{
    width:55px;
    height:55px;
    border-radius:50%;
    border:2px solid #8a2be2;
    background:#1d1d1d;
    color:white;
    font-size:24px;
    cursor:pointer;
    transition:.25s;
    box-shadow:0 0 18px rgba(138,43,226,.45);
}

.icon-btn:hover,
.profile-btn:hover{
    background:#8a2be2;
    transform:scale(1.08);
}

.profile-menu{
    position:relative;
}

.dropdown{
    display:none;
    position:absolute;
    right:0;
    top:68px;
    width:180px;
    background:#171717;
    border:2px solid #8a2be2;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 0 25px rgba(138,43,226,.5);
}

.dropdown a{
    display:block;
    color:white;
    text-decoration:none;
    padding:15px;
    transition:.25s;
}

.dropdown a:hover{
    background:#8a2be2;
}

.hero{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:90px;
}

.game-card{
    width:700px;
    background:#151515;
    border:2px solid #8a2be2;
    border-radius:25px;
    padding:45px;
    text-align:center;
    box-shadow:0 0 35px rgba(138,43,226,.55);
}

.game-image{
    font-size:90px;
}

.game-card h1{
    margin-top:15px;
    color:#b46cff;
    font-size:48px;
}

.game-card p{
    margin-top:18px;
    color:#d8d8d8;
    font-size:22px;
}

.shop-btn{
    margin-top:35px;
    padding:18px 45px;
    border:none;
    border-radius:15px;
    background:#8a2be2;
    color:white;
    font-size:22px;
    cursor:pointer;
    transition:.25s;
    box-shadow:0 0 20px rgba(138,43,226,.6);
}

.shop-btn:hover{
    background:#a64dff;
    transform:scale(1.05);
}

.category-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    margin-top:60px;
    flex-wrap:wrap;
}


.category-btn{

    width:300px;
    height:100px;

    background:#111;

    color:white;

    font-size:32px;
    font-weight:bold;

    border:3px solid #8a2be2;

    border-radius:25px;

    cursor:pointer;

    box-shadow:0 0 25px #8a2be2;

    transition:.3s;

}


.category-btn:hover{

    background:#8a2be2;

    transform:scale(1.08);

    box-shadow:0 0 40px #b46cff;

}


.category-buttons a{

    text-decoration:none;

}

.seed-container{

    display:flex;
    
    justify-content:center;
    
    align-items:center;
    
    gap:30px;
    
    flex-wrap:wrap;
    
    margin-top:50px;
    
    }
    
    
    
    .seed-card{
    
    width:260px;
    
    background:#111;
    
    border:3px solid #8a2be2;
    
    border-radius:25px;
    
    padding:25px;
    
    text-align:center;
    
    box-shadow:0 0 25px rgba(138,43,226,.5);
    
    transition:.3s;
    
    }
    
    
    
    .seed-card:hover{
    
    transform:scale(1.05);
    
    box-shadow:0 0 40px #b46cff;
    
    }
    
    
    
    .seed-image{
    
    font-size:80px;
    
    margin-bottom:15px;
    
    }
    
    
    
    .seed-card h2{
    
    color:#b46cff;
    
    }
    
    
    
    .buy-btn{
    
    width:100%;
    
    height:50px;
    
    margin-top:20px;
    
    background:#8a2be2;
    
    color:white;
    
    border:none;
    
    border-radius:15px;
    
    font-size:18px;
    
    cursor:pointer;
    
    }
    
    
    
    .buy-btn:hover{
    
    background:#b46cff;
    
    }

    .remove-btn{

        width:100%;
        
        height:45px;
        
        background:#ff1744;
        
        color:white;
        
        border:none;
        
        border-radius:12px;
        
        font-size:18px;
        
        cursor:pointer;
        
        }
        
        
        .remove-btn:hover{
        
        background:#ff4569;
        
        }
        
        
        
        .total{
        
        margin-top:40px;
        
        color:#b46cff;
        
        font-size:30px;
        
        }

        /* ---------- Login & Register ---------- */

.login-box{
    width:420px;
    margin:60px auto;
    background:#171421;
    padding:35px;
    border-radius:18px;
    box-shadow:0 0 35px rgba(148,0,255,.25);
    text-align:center;
}

.avatar-circle{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#8b3dff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin-bottom:20px;
}

.login-box h1{
    color:white;
    margin-bottom:5px;
}

.subtitle{
    color:#bdbdbd;
    margin-bottom:25px;
}

.login-box input{

    width:100%;

    padding:14px;

    margin-top:12px;

    border:none;

    border-radius:10px;

    background:#26223a;

    color:white;

    outline:none;

}

.login-box input::placeholder{

    color:#a5a5a5;

}

.buy-btn{

    width:100%;

    margin-top:20px;

    padding:14px;

    background:#8b3dff;

    color:white;

    border:none;

    border-radius:12px;

    cursor:pointer;

    font-size:17px;

    transition:.25s;

}

.buy-btn:hover{

    background:#9f5cff;

    transform:scale(1.03);

}

.bottom-text{

    margin-top:18px;

    color:white;

}

.bottom-text a{

    color:#a66bff;

    text-decoration:none;

    font-weight:bold;

}

.error-box{

    margin-bottom:15px;

    padding:12px;

    background:#ff3a3a;

    border-radius:10px;

    color:white;

}

.spin-icon{

    width:50px;
    height:50px;

    border-radius:50%;

    background:#171717;

    border:2px solid #8a2be2;

    color:white;

    font-size:25px;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 0 15px rgba(138,43,226,.5);

    transition:.25s;

}


.spin-icon:hover{

    transform:scale(1.1);

    box-shadow:0 0 25px rgba(138,43,226,.8);

}