:root {
    --bg-color: #ffffff;
    --text-color: #222222;
    --heading-color: #000000;
    --border-radius: 8px;
    --transition: all 0.2s ease-in-out;
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 3rem 1rem;
}

.container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Profile Section */
.profile {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

.bio {
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
    color: #444;
    text-align: center;
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.75rem;
    transition: var(--transition);
}

.social-icon:hover {
    transform: scale(1.1);
    color: #000;
}

/* Link Groups */
.link-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.group-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.contact-info {
    font-size: 0.95rem;
    color: #444;
    text-align: center;
    margin: 0.5rem 0 1rem;
    line-height: 1.5;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Buttons */
.link-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.link-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.icon-wrapper {
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
}

.link-text {
    flex: 1;
    text-align: center;
    /* Offset text back by the icon width to visually center it relative to button width */
    /* Only works well if icon is absolute, but here flex is safer for responsiveness */
    padding-right: 24px; 
}

/* Button Variants */
.btn-patreon {
    background-color: #ff424d;
    color: #ffffff;
}
.btn-patreon:hover { background-color: #e63b45; }

.btn-coffee {
    background-color: #FFDD00;
    color: #000000;
}
.btn-coffee:hover { background-color: #e6c700; }

.btn-amazon {
    background-color: #000000;
    color: #ffffff;
}
.btn-amazon .icon-wrapper { color: #FF9900; } /* Amazon accent */
.btn-amazon:hover { background-color: #222; }

.btn-black {
    background-color: #050505;
    color: #ffffff;
}
.btn-black:hover { background-color: #222; }

.btn-dark-blue {
    background-color: #24254a;
    color: #ffffff;
}
.btn-dark-blue:hover { background-color: #30315a; }


/* Responsive */
@media (max-width: 480px) {
    body { padding: 2rem 1rem; }
    .name { font-size: 1.75rem; }
    .link-item { padding: 0.875rem 1rem; }
    .link-text { font-size: 0.9rem; }
}
