/* Generale */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #ff5722, #ffcc00); /* Gradient di colori Horizon Craft */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

/* Contenitore principale */
.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenuto centrato */
.content {
    text-align: center;
    background: rgba(20, 20, 20, 0.85);
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 400px;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffcc00;
}

p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ddd;
}

/* Bottone UnBan */
.request-ban-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(45deg, #ff5722, #ffcc00);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.request-ban-btn:hover {
    background: linear-gradient(45deg, #ffcc00, #ff5722);
    transform: scale(1.08);
    box-shadow: 0px 0px 15px rgba(255, 204, 0, 0.5);
}

/* Bottone Torna alla Home */
.back-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background-color: #333;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.back-btn:hover {
    background-color: #ff5722;
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
