:root {
    --bg-color: #0d0d0d;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-color: #3b82f6;
    /* Subtle blue accent, can be changed */
    --hover-bg: #1f1f1f;
    --card-bg: #171717;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-stack);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 600px;
    width: 90%;
    text-align: center;
    padding: 2rem;
    animation: fadeIn 1.2s ease-out;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.05em;
    background: linear-gradient(to right, #ffffff, #a1a1aa);
    /* White to Grey gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    /* Optional: if it's a square icon, this makes it circular. If it's a wordmark, remove this. given "logo-transparent", I'll assume standard logo. Safe to omit border-radius if unsure, but for a profile-style page, round often looks good. I'll stick to NO border-radius for safety unless it's an icon. Let's strictly do size and margin. */
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.link-card:hover {
    transform: translateY(-2px);
    background-color: var(--hover-bg);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.link-content {
    text-align: left;
}

.link-title {
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
}

.link-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    opacity: 0.7;
}

.footer {
    margin-top: 4rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 640px) {
    .links {
        gap: 1.5rem;
    }
}
