*{
    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;
}

.Intro{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    margin: 60px auto;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.Descr{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-top: 20px;
    background-color: transparent;
    box-shadow: none;
}

.Descr p {
    line-height: 1.8;
    text-align: center;
    font-size: 1.1rem;
}

.Descr strong {
    color: #3b82f6;
}

.Btn-Build{
    border: none;
    cursor: pointer;
    border-radius: 12px;
    padding: 15px 40px; 
    margin: 10px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.Btn-Consoles{
    border: none;
    cursor: pointer;
    border-radius: 12px;
    padding: 15px 40px; 
    margin: 10px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.Btn-Faq{
    border: none;
    cursor: pointer;
    border-radius: 12px;
    padding: 15px 40px; 
    margin: 10px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.Btn-Build:hover, .Btn-Faq:hover, .Btn-Consoles:hover{
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 99, 235, 0.4);
}

.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 !important;
    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;
}