/* ==========================================
   RESET E STILI BASE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.box {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    background: #DCDCDC;
    padding: 12px 0;
    white-space: nowrap;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
}

/* ==========================================
   BANNER NEWS SCORREVOLI (TICKER)
   ========================================== */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: #2c3e50;
    padding: 12px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
}

@keyframes marquee {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* ==========================================
   CONTENUTO PRINCIPALE E CARD
   ========================================== */
.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
    flex: 1;
}

.card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 5px solid #3498db;
    text-align: center;
}

h1 {
    color: #800020;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.avviso-aggiornamento {
    background-color: #e8f4fd;
    border-left: 4px solid #3498db;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 4px;
    font-weight: bold;
    color: #2980b9;
    text-align: left;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
    text-align: left;
}

/* ==========================================
   BOTTONE FACEBOOK
   ========================================== */
.fb-btn {
    display: inline-flex;
    align-items: center;
    background-color: #1877f2;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
}

.fb-btn:hover {
    background-color: #166fe5;
}

.fb-btn i {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* ==========================================
   BOTTONE MASTODON
   ========================================== */
.ma-btn {
    display: inline-flex;
    align-items: center;
    background-color: #1877f2;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
}

.ma-btn:hover {
    background-color: #166fe5;
}

.ma-btn i {
ma  margin-right: 10px;
    font-size: 1.3rem;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #777;
    background: #f1f1f1;
}
