:root {
    --bg: #fdfdfd;
    --text: #1a1a1a;
    --accent: #2d3436;
    --card-bg: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    padding: 60px 0;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin: 0;
}

section { margin-bottom: 50px; }

h2 {
    font-family: 'Playfair Display', serif;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* Card Style */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.card:hover { transform: translateY(-5px); }

/* Markdown Profile Area */
#profile-content {
    font-size: 1.1rem;
    color: #444;
}
