body {
    background-color: #0a0a0a;
    background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

h1 {
    color: #ff0000;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

p {
    color: #cccccc;
    line-height: 1.8;
}

.profile-links {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.profile-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #ff0000;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #ff0000;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.profile-links a:hover {
    text-decoration: none;
    background-color: #ff0000;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #ff0000;
    padding: 20px;
    border-top: 2px solid #ff0000;
}