body {
    font: 15px/24px 'Liberation Sans', Arial, sans-serif;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    text-align: center;
    background: radial-gradient(circle at top, #8b0000 0%, #3b0000 40%, #000 100%);
    color: #fff;
    margin: 0;
    padding: 0;
}

/* MAIN CARD */
.container {
    max-width: 400px;
    margin: 50px auto;
    background: rgba(0, 0, 0, 0.75);
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.25);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

/* PROFILE */
.profile img {
    width: 100px;
    border-radius: 50%;
    border: 2px solid #ff2a2a;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

/* BUTTON LINKS */
.links a {
    display: block;
    padding: 14px;
    margin: 12px 0;
    background: linear-gradient(135deg, #ff1a1a, #8b0000);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.links a:hover {
    background: linear-gradient(135deg, #ff3b3b, #b30000);
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.7);
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(135deg, #8b0000, #000);
    border: 1px solid rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #ff1a1a;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

/* AD CONTAINER */
.ad-container {
    text-align: center;
    margin: 2rem 0;
}