*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(circle at top, #1e293b 0%, #0f172a 100%);
    color: #f8fafc; 
    min-height: 100vh;
}

.Card-Prodotto{
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    margin: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
    color: #f8fafc;
}

.Card-Prodotto:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.5); 
}

.Consoles{
    display: flow-root;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px; 
    margin: 100px 5%;
    padding: 20px;
    text-align: center;
}

.Prezzo{
     margin: 10px;
}

.Btn-Meno,.Btn-Piu{
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.2s;
}

.Btn-Meno:hover, .Btn-Piu:hover, .Add:hover{
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.Quantities{
    margin: 10px;
    border-radius: 10px;
}

.Add{
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 25px;
    margin-top: 15px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.Add:hover {
    filter: brightness(1.2);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

.Prezzo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3b82f6;
    margin: 15px 0;
}

.Playstation5{
    background-image: url('Icons/icons8-playstation-5-48.png');
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.Playstation4{
    background-image: url('Icons/icons8-playstation-4-48.png');
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.Playstation3{
    background-image: url('Icons/icons8-playstation-3-console-48.png');
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.XboxOneS{
    background-image: url('Icons/icons8-xbox-one-s-48.png');
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.XboxOneX{
    background-image: url('Icons/icons8-xbox-one-x-48.png');
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.NavBar{
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    width: 100%;
    background: rgba(15, 23, 42, 0.7); 
    backdrop-filter: blur(12px);     
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.NavText{
    color: #f8fafc; 
    font-size: 13px;
    font-weight: 500;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

.NavBar > div:first-child {
    position: relative;
    display: flex;       
    gap: 30px; 
    margin: 10px;
    background: transparent; 
    backdrop-filter: none;      
}

.NavBar > div:last-child {
    position: relative; 
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
}

.Home, .Products, .About, .Console {
    display: flex;
    flex-direction: column; 
    align-items: center;    
    cursor: pointer;
    position: relative;
    margin: 3px;
    padding: 5px;
    transition: all 0.3s ease;
}

.Home:hover, .Products:hover, .About:hover, .Console:hover, .Cart:hover {
    transform: translateY(-2px); 
    filter: brightness(1.3);     
}

.Cart{
    display: flex;
    flex-direction: column;
    align-items: center; 
    position: relative;  
    cursor: pointer;    
    transition: all 0.3s ease;     
}

.Cart .span-cart-icon::before{
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
}

.Badge {
    position: absolute;
    top: -8px;    
    right: -12px; 
    background-color: #aa5c5c;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 16px;
    text-align: center;
    z-index: 99; 
}

.Home::before, .Products::before, .About::before, .Console::before, .Cart::before {
    content: "";           
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 5px;     
}


.Home::before { background-image: url('Icons/icons8-home-48.png'); }
.Products::before { background-image: url('Icons/icons8-products-64.png'); }
.About::before { background-image: url('Icons/icons8-info-100.png'); }
.Console::before { background-image: url('Icons/icons8-consoles-64.png'); }
.Cart::before { background-image: url('Icons/icons8-cart-64.png'); }

.NavText {
    font-size: 14px;        
    margin: 0;              
    font-weight: 500;
    display: inline-block;
}