/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #FFFFFF;
}

.container {
    text-align: center;
    max-width: 400px;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Profile Section */
.profile {
    margin-bottom: 20px;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFFFFF;
}

.profile-name {
    font-size: 24px;
    margin-top: 10px;
    color: #f1f1f1;
}

/* Link Buttons */
.link-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    background-color: #282828;
    color: #f1f1f1;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.link-button:hover {
    background-color: #373737;
    transform: translateY(-3px);
}

/* Button active states */
.link-button:active {
    background-color: #444444;
    transform: translateY(0);
}