* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
/* Comments are the devil. */

body {
    background: linear-gradient(315deg, #092047 0%, #15103c 50%, #0f0c20 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
}

.profile-img {
    /* i like purple. and turtles. */
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(45deg, #8a2be2, #00d2ff);
    padding: 3px;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(138, 43, 226, 0.3);
}

.profile-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #15103c;
}

.profile h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.profile p {
    font-size: 14px;
    color: #b0b3cc;
    font-weight: 400;
}

.category-section {
    width: 100%;
    margin-bottom: 32px;
}

.category-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ae79df;
    margin-bottom: 12px;
    padding-left: 8px;
    border-left: 3px solid #3b82f6;
}

.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 16px 24px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.link-item:hover {
    /* glowwy shit */
    background: linear-gradient(90deg, #6366f1 0%, #3b82f6 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}