/* Reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    overflow: hidden;
}

/* Sfondo animato */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Contenuto */
.content {
    position: relative;
    z-index: 1;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    padding: 20px;
}

/* Rendi cliccabili solo i bottoni e i link */
.content a,
.content button {
    pointer-events: auto;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Pulsanti generali */
.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Pulsanti OS */
.os-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pulsante Discord */
.discord-button {
    display: flex;
    justify-content: center;
}

/* Stile pulsanti */
.btn {
    padding: 15px 25px;
    background: #e94560;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn:hover {
    background: #ff2e63;
}

.btn.disabled {
    background: #555;
    cursor: not-allowed;
}

footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .download-desktop {
        display: none;
    }
}

.visit-counter {
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 5px;
    text-align: center;
}