:root {
    --bg-color: #f0f7ff;
    --card-bg: #ffffff;
    --primary-color: #2563eb;
    --accent-color: #3b82f6;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --discord-color: #5865f2;
    --discord-hover: #4752c4;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-hover: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #e2e8f0;
    color: var(--text-main);
    line-height: 1.5;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 500px;
    text-align: center;
    background-color: var(--card-bg);
    padding: 40px 24px;
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
}

header {
    margin-bottom: 32px;
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-main);
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 16px auto 8px;
    display: block;
    border: 3px solid var(--card-bg);
    box-shadow: var(--shadow);
}

.social-mini-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.social-mini-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #f1f5f9;
    border-radius: 50%;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-mini-links a:hover {
    transform: scale(1.1);
    background-color: #e2e8f0;
}

.social-mini-links img {
    width: 18px;
    height: 18px;
}

.email-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.email-link:hover {
    color: var(--primary-color);
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.link-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background-color: #f8fafc;
}

.icon-placeholder {
    width: 48px;
    height: 48px;
    background-color: #f8fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.icon-svg {
    width: 28px;
    height: 28px;
}

.link-content {
    text-align: left;
}

.link-title {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.link-desc {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.discord-section {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
    border: 2px solid #e2e8f0;
}

.discord-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.discord-icon-large {
    width: 32px;
    height: 32px;
}

.discord-section h2 {
    font-size: 1.4rem;
    margin: 0;
}

.discord-tagline {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.discord-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
    padding-left: 0;
}

.discord-benefits li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.discord-benefits li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 8px;
}

.discord-button {
    display: block;
    background-color: var(--discord-color);
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.discord-button:hover {
    background-color: var(--discord-hover);
}

.discord-button:active {
    transform: scale(0.98);
}

@media (max-width: 400px) {
    h1 { font-size: 1.5rem; }
    .profile-img {
        width: 100px;
        height: 100px;
    }
}
