/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Layout Container */
.container {
    text-align: center;
    width: 100%;
    max-width: 400px;
}

/* Profile Elements */
.profile-pic {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #38bdf8;
    margin-bottom: 16px;
}

.username {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.description {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 32px;
}

/* Buttons Stack */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-btn {
    display: block;
    background-color: #1e293b;
    color: #ffffff;
    text-decoration: none;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #334155;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

/* Hover State */
.link-btn:hover {
    background-color: #38bdf8;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.2);
}
