:root {
    --bg-color: #fafafa;
    --text-primary: #222;
    --text-secondary: #666;
    --accent: #0070f3;
    --border-color: #eaeaea;
    --mono-font: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    animation: fadeIn 0.8s ease-out;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    border-radius: 8px; /* Slightly rounded for an indie look */
}

.hero-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.subtitle {
    font-family: var(--mono-font);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.divider {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
}

/* Content */
.content {
    margin-bottom: 2rem;
    color: #444;
}

.content p {
    margin-bottom: 1rem;
}

/* Featured Link Card */
.featured-link .card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.2s, border-color 0.2s;
}

.featured-link .card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.arrow {
    color: var(--accent);
    font-weight: bold;
}

/* Footer & Socials */
.socials {
    margin-top: 4rem;
    text-align: center;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    color: #02754e;
}

.social-links a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.dot {
    margin: 0 10px;
    color: var(--border-color);
}

.timestamp {
    margin-top: 1rem;
    font-family: var(--mono-font);
    font-size: 0.7rem;
    color: #aaa;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 500px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}