:root { --primary: #2c3e50; --bg: #f8f9fa; --white: #ffffff; --accent: #3498db; }
body { margin: 0; font-family: 'Segoe UI', sans-serif; background: var(--bg); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar { background: var(--primary); color: var(--white); padding: 15px 0; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-links { list-style: none; display: flex; gap: 20px; margin: 0; }
.nav-links a { color: var(--white); text-decoration: none; font-weight: 500; }

/* Main Layout */
.main-layout { display: grid; grid-template-columns: 350px 1fr; gap: 30px; margin-top: 30px; }

/* Son Güncellemeler (Sol) */
.updates-panel { background: var(--white); padding: 20px; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.update-card { display: flex; align-items: center; gap: 15px; padding: 12px; border-bottom: 1px solid #eee; text-decoration: none; color: inherit; }
.update-card img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.update-info .name { display: block; font-weight: bold; font-size: 14px; }
.update-info .date { font-size: 12px; color: #888; }

/* İstatistikler (Sağ) */
.stats-panel { display: flex; flex-direction: column; gap: 20px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-box { background: var(--white); padding: 30px; border-radius: 10px; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.stat-box strong { display: block; font-size: 32px; color: var(--accent); }

/* Profil & Timeline */
.profile-container { display: grid; grid-template-columns: 300px 1fr; gap: 40px; margin-top: 40px; background: #fff; border-radius: 15px; overflow: hidden; }
.family-sidebar { background: #fdfdfd; padding: 30px; border-right: 1px solid #eee; }
.rel-card { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-size: 14px; }
.rel-card img { width: 40px; height: 40px; border-radius: 5px; }
.person-header { display: flex; align-items: center; gap: 30px; padding: 40px; border-bottom: 1px solid #eee; }
.person-header img { width: 140px; height: 180px; object-fit: cover; border-radius: 8px; border: 5px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.timeline-item { position: relative; padding-left: 50px; margin-bottom: 30px; border-left: 2px solid var(--accent); }
.timeline-item .year { position: absolute; left: -10px; top: 0; background: var(--accent); color: #fff; padding: 2px 10px; border-radius: 10px; font-size: 12px; }