/* ========= VARIABILI CSS (Palette Blu Vibrante) ========= */
:root {
    /* Colori Principali */
    --header-gradient-start: #1e90ff;
    --header-bg: #0073e6;
    --main-bg: #101827;
    --controls-wrapper-bg: #1c2a41;
    --card-bg: #1f618d;
    --card-soon-bg: #1c2a41;
    --footer-bg: #101827;

    /* Colori Secondari/Accenti */
    --text-light: #FFFFFF;
    --text-grey: #a0b3c5;
    --text-accent: #c4e9e3;
    --accent-color: #1e90ff;
    --button-hover-bg: #4a8dcb;
    --nav-active-bg: #1f618d;
    --badge-bg: #32ff00;
    --soon-text-color: #ff4d4d;
}

/* ========= RESET BASE E STILI GENERALI ========= */
body { 
    font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif; 
    background-color: var(--main-bg); 
    color: var(--text-light); 
    margin: 0; 
    padding: 0; 
    line-height: 1.6; 
    overflow-x: hidden; 
}
a { 
    text-decoration: none; 
    color: inherit; 
}
ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}
button { 
    font-family: inherit; 
    cursor: pointer; 
    border: none; 
    background: none; 
    color: inherit; 
    padding: 0; 
}
img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
}

/* ========= CLASSE PER NASCONDERE ELEMENTI ========= */
.hidden {
    display: none !important;
}

/* ========= NUOVA STRUTTURA HEADER ========= */
.header-and-nav-wrapper {
    position: relative;
}

.header-container {
    /* Sostituisci 'images/your-header-image.jpg' con il percorso della tua immagine */
    background: url('images/Play.wolfmc.it.png') no-repeat center center; 
    background-size: cover; /* Assicura che l'immagine copra tutto lo sfondo */
    position: relative;
    padding-bottom: 110px;
    clip-path: url(#wave-shape);
    z-index: 1;
}

.top-nav-bar { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 5px 0; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}

.top-nav-bar nav {
    display: flex;
    gap: 10px;
    background-color: rgba(0, 7, 10, 0.438); /* Sfondo scuro semitrasparente per il contenitore */
    padding: 5px 10px;                   /* Spaziatura interna per distanziare i bottoni dal bordo */
    border-radius: 50px;                     /* Bordi molto arrotondati per creare la forma a "pillola" */
    box-shadow: 0 4px 15px rgba(0,0,0,0.4); /* Ombra per dare un effetto di profondità */
}

.top-nav-bar a { 
    color: var(--text-grey); 
    text-transform: uppercase; 
    font-weight: 600; 
    font-size: 0.8em; 
    padding: 8px 15px; 
    border-radius: 20px; 
    transition: all 0.3s ease; 
}

.top-nav-bar a:hover { 
    color: var(--text-light); 
    background-color: rgba(255, 255, 255, 0.1); 
}

.top-nav-bar a.active { 
    background-color: var(--nav-active-bg); 
    color: var(--text-light); 
}

.site-header { 
    padding-top: 30px; 
    position: relative; 
}

.header-content-wrapper { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

/* ========= Posizionamento Logo ========= */
.logo-container { 
    position: absolute; 
    top: 75px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 170px; 
    z-index: 3; 
    pointer-events: none; 
}

.site-logo { 
    width: 100%; 
    height: auto; 
    pointer-events: all; 
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3)); 
}

/* STILE PULSANTI HEADER */
.header-action-group { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    cursor: pointer; 
    position: relative;
}

.circular-btn {
    width: 64px;
    height: 64px;
    background-color: rgba(0, 0, 0, 0.45); /* Sfondo più scuro per contrasto */
    border: 2px solid rgba(255, 255, 255, 0.5); /* Bordo più visibile */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    color: var(--text-light);
    position: relative;
    transition: all 0.3s ease;
    /* Effetto glow */
    box-shadow: 0 0 15px rgba(50, 255, 255, 0.3), 0 0 5px rgba(255, 255, 255, 0.5);
}

.header-action-group:hover .circular-btn {
    background-color: rgba(0, 0, 0, 0.6);
    /* Glow più intenso al passaggio del mouse */
    box-shadow: 0 0 25px rgba(50, 255, 255, 0.6), 0 0 10px rgba(255, 255, 255, 0.7);
    transform: scale(1.05); /* Leggero ingrandimento per un effetto dinamico */
}

.button-text-group { 
    display: flex; 
    flex-direction: column; 
    color: var(--text-light); 
}

.button-text-group.text-right { 
    align-items: flex-end; 
}

.button-text-group span:first-child { 
    font-size: 1.2em; 
    font-weight: 700; 
    text-transform: uppercase; 
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8); 
}

.button-subtext { 
    font-size: 0.9em; 
    color: var(--text-grey); 
    font-weight: 500; 
    text-transform: uppercase; 
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.button-badge { 
    position: absolute; 
    top: -5px; 
    right: -5px; 
    background-color: var(--badge-bg); 
    color: #000; 
    font-size: 0.6em; 
    font-weight: 700; 
    padding: 4px 8px; 
    border-radius: 20px; 
    border: 2px solid var(--text-light); 
}

/* BARRA SECONDARIA DI CONTROLLO */
.secondary-controls-bar { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    z-index: 2; 
}

.controls-wrapper { 
    max-width: 900px; 
    margin: 0 auto; 
    padding: 20px 35px; 
    display: flex; 
    justify-content: space-around; 
    align-items: center; 
    background-color: var(--controls-wrapper-bg); 
    border-radius: 50px; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); 
}

.control-button, .shopping-cart-status, .dropdown { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    color: var(--text-grey); 
    font-size: 0.9em; 
    font-weight: 500;
    cursor: pointer;
}

.control-button:hover, .dropdown button:hover, .shopping-cart-status:hover { 
    color: var(--text-light); 
}

.shopping-cart-status i, .control-button i { 
    font-size: 1.1em; 
}

.cart-text { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    line-height: 1.1; 
}

.cart-text span:first-child { 
    font-weight: 600; 
    text-transform: uppercase; 
    font-size: 0.9em;
}

.cart-subtext { 
    font-size: 0.8em; 
    color: var(--text-grey); 
    text-transform: uppercase; 
}

.dropdown { 
    position: relative; 
}

.dropdown-menu { 
    display: none; 
    position: absolute; 
    bottom: 120%; 
    left: 50%; 
    transform: translateX(-50%); 
    background-color: var(--controls-wrapper-bg); 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 6px; 
    padding: 5px 0; 
    min-width: 100px; 
    z-index: 100; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
}

.dropdown:hover .dropdown-menu, .dropdown-toggle:focus + .dropdown-menu { 
    display: block; 
}

.dropdown-menu a { 
    display: block; 
    padding: 8px 15px; 
    font-size: 0.9em; 
    color: var(--text-grey); 
}

.dropdown-menu a:hover { 
    background-color: var(--nav-active-bg); 
    color: var(--text-light); 
}

/* CONTENUTO PRINCIPALE (A 2 COLONNE) */
.main-content-area { 
    max-width: 900px; 
    margin: 50px auto; 
    padding: 0 20px; 
}

.categories-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 25px; 
}

/* STILE CARD CATEGORIA */
.category-card { 
    background-color: var(--controls-wrapper-bg); 
    border: 2px solid transparent; 
    border-radius: 12px; 
    padding: 30px; 
    text-align: center; 
    box-shadow: 0 6px 15px rgba(0,0,0,0.3); 
    transition: all 0.3s ease; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    align-items: center; 
    min-height: 220px; 
    cursor: pointer; 
}

.category-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--accent-color); 
}

.category-card h2 { 
    font-family: 'Impact', 'Arial Black', sans-serif; 
    font-size: 2.8em; 
    color: var(--text-light); 
    text-transform: uppercase; 
    margin: 0 0 10px 0; 
    line-height: 1.1; 
}

.category-card p { 
    font-size: 0.9em; 
    color: var(--text-grey); 
    margin: 0 0 20px 0; 
    font-weight: 500; 
}

.skin-container { 
    margin-top: auto; 
    width: 120px; 
    height: 120px; 
}

.skin-container img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    image-rendering: pixelated; 
}

/* STILE CARD "IN ARRIVO" */
.category-card.upcoming { 
    background-color: transparent; 
    border: 2px dashed #4a5a73; 
    cursor: not-allowed; 
    justify-content: center; 
}

.category-card.upcoming:hover { 
    transform: none; 
    border-color: #4a5a73; 
}

.category-card.upcoming h2 { 
    color: var(--soon-text-color); 
}

.category-card.upcoming p { 
    display: none; 
}

/* NUOVI STILI PER CARD DINAMICA KITPVP */
.category-card-container { 
    min-height: 264px; 
}

.sub-category-grid-wrapper { 
    background-color: var(--controls-wrapper-bg); 
    padding: 17px; 
    border-radius: 12px; 
    height: 100%; 
    box-sizing: border-box; 
}

.sub-category-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
    height: 100%; 
}

.sub-category-button { 
    background-color: var(--card-bg); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    color: var(--text-light); 
    padding: 20px; 
    border-radius: 8px; 
    text-align: center; 
    font-size: 1em; 
    font-weight: 600; 
    text-transform: uppercase; 
    transition: all 0.3s ease; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.sub-category-button:hover { 
    background-color: var(--button-hover-bg); 
    border-color: var(--accent-color); 
    transform: translateY(-3px); 
}

/* FOOTER */
.site-footer { 
    background-color: var(--footer-bg); 
    color: var(--text-grey); 
    padding: 40px 0; 
    font-size: 0.9em; 
    margin-top: 50px; 
}

.footer-content-wrapper { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.footer-main { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 20px; 
    padding-bottom: 25px; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}

.footer-left { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.footer-logo { 
    max-width: 80px; 
}

.company-info p { 
    margin: 2px 0; 
    font-size: 0.9em; 
}

.company-info p strong { 
    color: var(--text-light); 
}

.footer-right { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.footer-nav { 
    display: flex; 
    gap: 10px; 
}

.footer-nav a { 
    background-color: #2c3e50; 
    color: var(--text-grey); 
    padding: 8px 20px; 
    border-radius: 20px; 
    font-weight: 500; 
    transition: all 0.3s ease; 
}

.footer-nav a:hover { 
    background-color: var(--accent-color); 
    color: var(--text-light); 
}

.back-to-top { 
    width: 40px; 
    height: 40px; 
    background-color: var(--accent-color); 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    color: var(--text-light); 
    font-size: 1.2em; 
    transition: transform 0.3s ease; 
}

.back-to-top:hover { 
    transform: translateY(-3px); 
}

.footer-sub { 
    display: flex; 
    justify-content: space-between; 
    padding-top: 25px; 
    font-size: 0.8em; 
    color: rgba(160, 179, 197, 0.7); 
}

/* NOTIFICA TOAST */
.toast { 
    visibility: hidden; 
    min-width: 250px; 
    background-color: #00b36b; 
    color: #fff; 
    text-align: left; 
    border-radius: 5px; 
    padding: 16px; 
    position: fixed; 
    z-index: 2100; /* Sopra la sidebar */
    right: -100%; 
    bottom: 30px; 
    font-size: 17px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    transition: all 0.5s ease-in-out; 
}

.toast.show { 
    visibility: visible; 
    right: 30px; 
}

.toast i { 
    font-size: 1.4em; 
}


/* ========= NUOVI STILI AGGIUNTI DA QUI IN POI ========= */

/* STILI PAGINA "ALTRO" */
.products-list {
    background-color: var(--controls-wrapper-bg);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px; /* Spazio corretto dall'header */
    position: relative;
    z-index: 5;
}
.products-list h1 {
    text-align: center;
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 30px;
    color: var(--text-light);
}
.product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--main-bg);
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #2c3e50;
}
.product-info span { display: block; }
.product-info .product-name { font-weight: 700; font-size: 1.1em; color: var(--text-light); }
.product-info .product-price { color: var(--accent-color); font-weight: 600; }
.product-actions button {
    background-color: transparent;
    border: 1px solid var(--text-grey);
    color: var(--text-grey);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}
.product-actions button.buy-button {
    background-color: var(--accent-color);
    color: var(--text-light);
    border-color: var(--accent-color);
    border-radius: 8px;
    width: auto;
    padding: 0 20px;
}
.product-actions button:hover { color: var(--text-light); border-color: var(--accent-color); }
.product-actions button.buy-button:hover { background-color: var(--button-hover-bg); }

/* STILI MODALE (POP-UP) E CARRELLO LATERALE */
.modal-overlay { /* Classe generica per tutti i modali */
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7); display: flex;
    justify-content: center; align-items: center; z-index: 1000;
    opacity: 1; transition: opacity 0.3s ease;
}
.modal-overlay.modal-hidden { opacity: 0; pointer-events: none; }
#modal-container, #confirm-modal-container { /* Stile comune per i container dei modali */
    background-color: var(--controls-wrapper-bg); padding: 25px;
    border-radius: 12px; width: 90%; max-width: 550px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4); border: 1px solid #2c3e50;
    transform: scale(1); transition: transform 0.3s ease;
}
.modal-overlay.modal-hidden #modal-container,
.modal-overlay.modal-hidden #confirm-modal-container { transform: scale(0.9); }
.modal-header { /* Classe generica per l'header dei modali */
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid #2c3e50; padding-bottom: 15px; margin-bottom: 15px;
}
.modal-header h2 { margin: 0; font-size: 1.8em; color: var(--text-light); }
.modal-close-button { /* Classe generica per il bottone di chiusura */
    background: none; border: none; color: var(--text-grey);
    font-size: 2em; cursor: pointer; line-height: 1;
}
.modal-close-button:hover { color: var(--text-light); }
#modal-body p, #confirm-modal-message { color: var(--text-grey); line-height: 1.6; margin: 0 0 20px 0; }
.modal-footer { /* Classe generica per il footer dei modali */
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 15px; border-top: 1px solid #2c3e50;
}
#modal-price { font-size: 1.3em; font-weight: 700; color: var(--accent-color); }

/* Stili specifici per il modale di conferma */
#confirm-modal-footer-buttons {
    border-top: 1px solid #2c3e50;
    padding-top: 15px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.modal-button {
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9em;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-button.danger {
    background-color: #e53e3e;
    color: white;
}
.modal-button.danger:hover {
    background-color: #c53030;
}

.modal-button.secondary {
    background-color: #4a5a73;
    color: white;
}
.modal-button.secondary:hover {
    background-color: #3b4a61;
}


.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%; /* Inizia fuori dallo schermo */
    width: 100%;
    max-width: 400px; /* Larghezza massima */
    height: 100%;
    background-color: #151c2c;
    box-shadow: -5px 0 25px rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease-in-out; /* EFFETTO DI APERTURA */
}

.cart-sidebar.active {
    right: 0; /* Entra nello schermo */
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--controls-wrapper-bg);
    border-bottom: 1px solid #2c3e50;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.4em;
    text-transform: uppercase;
}

.close-cart-btn {
    font-size: 2em;
    line-height: 1;
    color: var(--text-grey);
}
.close-cart-btn:hover {
    color: var(--text-light);
}

.cart-items {
    flex-grow: 1;
    padding: 10px 20px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #2c3e50;
}
.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info span { display: block; }
.cart-item-info .item-name { font-weight: 600; font-size: 1.1em; }
.cart-item-info .item-price { color: var(--text-grey); font-size: 0.9em; }

.cart-item-remove {
    color: var(--soon-text-color);
    font-size: 1.5em;
    cursor: pointer;
}

.cart-empty-message {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-grey);
}

.cart-footer {
    padding: 20px;
    background-color: var(--controls-wrapper-bg);
    border-top: 1px solid #2c3e50;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 20px;
}

.checkout-btn, .empty-cart-btn {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    display: block;
}

.checkout-btn {
    background-color: var(--accent-color);
    color: var(--text-light);
}
.checkout-btn:hover {
    background-color: var(--button-hover-bg);
}

.empty-cart-btn {
    background-color: #4a5a73;
    margin-top: 10px;
}
.empty-cart-btn.hidden {
    display: none;
}


/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .controls-wrapper { 
        max-width: 90%; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 15px; 
        padding: 15px; 
    }
    .header-content-wrapper { 
        max-width: 100%; 
    }
    .logo-container { 
        width: 220px; 
        top: 125px; 
    }
    .footer-main { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 30px;
    }
    .footer-right { 
        width: 100%; 
        justify-content: flex-start; 
    }
}

@media (max-width: 768px) {
    .header-and-nav-wrapper { 
        position: static; 
    }
    .header-container { 
        padding-bottom: 20px; 
        clip-path: none; 
    }
    .header-content-wrapper { 
        flex-direction: column; 
        gap: 20px; 
    }
    .logo-container { 
        position: relative; 
        top: auto; 
        left: auto; 
        transform: none; 
        width: 180px; 
        order: -1; 
        margin: 0 auto 20px; 
        z-index: 1; 
    }
    .header-left, .header-right { 
        order: 2; 
    }
    .header-left { 
        margin-bottom: 10px;
    }
    .header-right .text-right { 
        align-items: flex-start; 
    }
    .header-right .header-action-group { 
        flex-direction: row-reverse; 
    }
    .categories-grid { 
        grid-template-columns: 1fr; 
    }
    .top-nav-bar nav { 
        gap: 0; 
        flex-wrap: wrap; 
        justify-content: center; 
    }
    .top-nav-bar a { 
        font-size: 0.7em; 
        padding: 6px 10px; 
    }
    .secondary-controls-bar { 
        position: relative; 
        width: 90%; 
        margin: 20px auto 0; 
    }
    .footer-sub { 
        flex-direction: column; 
        text-align: center; 
        gap: 10px; 
    }
    .sub-category-grid { 
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 520px) {
    .controls-wrapper { 
        flex-direction: column; 
        border-radius: 20px; 
        align-items: flex-start; 
        padding-left: 30px; 
        padding-right: 30px;
    }
    .circular-btn { 
        width: 50px; 
        height: 50px; 
        font-size: 1.5em; 
    }
    .button-text-group span:first-child { 
        font-size: 1em; 
    }
    .button-subtext { 
        font-size: 0.8em; 
    }
    .footer-left { 
        flex-direction: column; 
        align-items: flex-start; 
        text-align: left;
    }
}

/* STILI LOGIN */
.login-container { 
    background-color: var(--controls-wrapper-bg); 
    padding: 40px; 
    border-radius: 12px; 
    text-align: center; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); 
    max-width: 550px; 
    margin: 50px auto; 
}

.login-container h1 { 
    font-family: 'Impact', 'Arial Black', sans-serif; 
    font-size: 2.5em; 
    color: var(--text-light); 
    text-transform: uppercase; 
    margin-top: 0; 
    margin-bottom: 30px; 
    letter-spacing: 1.5px; 
}

.login-container form { 
    display: flex; 
    flex-direction: column; 
    text-align: left; 
}

.login-container label { 
    color: var(--text-grey); 
    font-weight: 600; 
    margin-bottom: 10px; 
    font-size: 0.9em; 
    text-transform: uppercase; 
}

.login-container input[type="text"] { 
    background-color: var(--main-bg); 
    border: 2px solid #2c3e50; 
    border-radius: 8px; 
    padding: 15px; 
    color: var(--text-light); 
    font-size: 1em; 
    margin-bottom: 15px; 
    transition: border-color 0.3s ease; 
}

.login-container input[type="text"]:focus { 
    outline: none; 
    border-color: var(--accent-color); 
}

.login-container .info-text { 
    color: var(--text-grey); 
    font-size: 0.85em; 
    text-align: center; 
    margin-top: 5px; 
    margin-bottom: 30px; 
    line-height: 1.4; 
}

.login-container .login-button { 
    background-color: var(--accent-color); 
    color: var(--text-light); 
    padding: 15px; 
    border-radius: 8px; 
    font-weight: 700; 
    font-size: 1.1em; 
    text-transform: uppercase; 
    transition: background-color 0.3s ease; 
    border: none; 
    cursor: pointer; 
}

.login-container .login-button:hover { 
    background-color: var(--button-hover-bg); 
}

/* STILI PROFILO UTENTE */
.user-profile-button { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.user-avatar { 
    width: 32px; 
    height: 32px; 
    border-radius: 5px; 
    image-rendering: pixelated; 
}

.user-profile-logged-in .dropdown-menu { 
    right: 0; 
    left: auto; 
    bottom: auto; 
    top: 120%; 
    transform: translateX(0); 
    z-index: 9999; /* Aggiunto per portarlo sopra a tutto */
}