body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a; /* Un negro más suave */
    color: #f0f0f0; /* Blanco apagado para el texto principal */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.mafia-container {
    max-width: 700px;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #e74c3c; /* Un rojo más clásico y legible */
    background-color: #2c2c2c; /* Un gris oscuro para el contenedor */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Sombra para profundidad */
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.mafia-text {
    color: #e74c3c;
}

.slogan {
    font-size: 1.1em;
    color: #bbb;
    margin-top: 10px;
    margin-bottom: 30px;
}

.coming-soon h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #fff;
}

.coming-soon p {
    font-size: 1em;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 30px;
}

.social-media h3 {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 15px;
}

.social-icons a {
    color: #e74c3c;
    font-size: 1.5em;
    margin: 0 12px;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #ff6b6b; /* Un rojo más claro al pasar el mouse */
    transform: scale(1.2); /* Un pequeño efecto de crecimiento */
}