/* Reset Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: Arial, sans-serif; 
    line-height: 1.6; 
    color: #333; 
    background-color: #f4f4f9; 
    padding: 20px; 
    text-align: center; 
}

.container { 
    max-width: 800px; 
    margin: 0 auto; 
    background: #fff; 
    padding: 30px; 
    border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}

/* Logo */
.logo { margin-bottom: 25px; }
.logo a { display: inline-block; border: none; outline: none; }
.logo img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
    margin: 0 auto; 
    border: none; 
}

/* Main Link */
.main-link { 
    display: inline-block; 
    padding: 15px 30px; 
    background-color: #007bff; 
    color: white; 
    text-decoration: none; 
    border-radius: 5px; 
    font-size: 1.2em; 
    font-weight: bold; 
    margin-bottom: 40px; 
    transition: background 0.3s ease;
}
.main-link:hover { background-color: #0056b3; }

/* Sezione Lista */
.content h2 { margin-bottom: 20px; color: #2c3e50; }
.recent-list { 
    list-style: none; 
    text-align: left; 
    max-width: 600px; 
    margin: 0 auto 30px auto; 
}
.recent-list li { 
    margin-bottom: 8px; 
    padding: 8px; 
    border-bottom: 1px solid #eee; 
}
.recent-list a { color: #333; text-decoration: none; }
.recent-list a:hover { color: #007bff; }

/* Ads & Footer */
.ads-container { margin: 30px 0; min-height: 100px; }
footer { 
    margin-top: 50px; 
    padding-top: 20px; 
    border-top: 2px solid #eee; 
    font-size: 0.85em; 
    color: #555; 
}
footer p { margin-bottom: 10px; }

/* Stile Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: none; 
}
.cookie-banner p { margin-bottom: 10px; font-size: 0.9em; }
.cookie-banner a { color: #007bff; text-decoration: underline; }
.cookie-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}
.cookie-btn:hover { background: #0056b3; }

/* Mobile */
@media (max-width: 600px) {
    .container { padding: 15px; }
}

/* ... [Mantenere tutto il resto del CSS come prima] ... */

/* Sezione Lista - Stile Bottone */
.content h2 { 
    margin-bottom: 20px; 
    color: #2c3e50; 
}

.recent-list { 
    list-style: none; 
    padding: 0;
    max-width: 600px; 
    margin: 0 auto 30px auto; 
}

.recent-list li { 
    margin-bottom: 10px; /* Spazio tra i bottoni */
}

.recent-list a { 
    display: block; /* Rende tutto il rettangolo cliccabile */
    padding: 12px 20px; 
    background-color: #f8f9fa; /* Colore di fondo neutro */
    border: 1px solid #e1e1e1; /* Bordo sottile */
    border-radius: 6px; 
    color: #333; 
    text-decoration: none; 
    font-weight: 500;
    transition: all 0.2s ease; /* Transizione fluida */
}

.recent-list a:hover { 
    background-color: #fff; 
    border-color: #007bff; /* Il bordo diventa blu */
    color: #007bff; /* Il testo diventa blu */
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* Effetto rialzato */
    transform: translateY(-2px); /* Effetto movimento */
}

