:root {
    --ig-orange: #f09433;
    --ig-red: #e6683c;
    --ig-magenta: #dc2743;
    --ig-purple: #cc2366;
    --ig-blue: #bc1888;
    --bg-white: #ffffff;
    --bg-gray: #fafafa;
    --text-dark: #262626;
    --text-muted: #8e8e8e;
    --border-color: #dbdbdb;
    --btn-blue: #0095f6;
    --btn-blue-hover: #1877f2;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
body { background: var(--bg-gray); color: var(--text-dark); line-height: 1.5; }
a { text-decoration: none; color: inherit; transition: 0.2s; }

/* Instagram Style Nav */
.nav-wrap { background: var(--bg-white); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; height: 60px; display: flex; align-items: center; }
.nav { max-width: 975px; width: 100%; padding: 0 20px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.nav-brand { font-size: 22px; font-weight: 700; font-family: 'Comic Sans MS', cursive, sans-serif; /* Fallback for IG logo style */ letter-spacing: -0.5px; color: var(--text-dark); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.nav-links a:hover, .nav-links a.active { color: var(--text-dark); }
.nav-btn { background: var(--btn-blue); color: white !important; padding: 6px 16px; border-radius: 8px; font-weight: 600; }
.nav-btn:hover { background: var(--btn-blue-hover); }

/* Hero Profile Style */
.hero { max-width: 975px; margin: 40px auto 0; padding: 0 20px 44px; display: flex; gap: 60px; align-items: flex-start; border-bottom: 1px solid var(--border-color); }
.hero-avatar { width: 150px; height: 150px; border-radius: 50%; padding: 3px; background: linear-gradient(45deg, var(--ig-orange), var(--ig-magenta), var(--ig-purple)); flex-shrink: 0; }
.hero-avatar img { width: 100%; height: 100%; border-radius: 50%; border: 2px solid white; object-fit: cover; }
.hero-content { flex: 1; }
.hero-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.hero-header h1 { font-size: 28px; font-weight: 300; }
.hero-actions { display: flex; gap: 10px; }
.btn { padding: 7px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
.btn-primary { background: var(--btn-blue); color: white; }
.btn-primary:hover { background: var(--btn-blue-hover); }
.btn-secondary { background: #efefef; color: var(--text-dark); }
.btn-secondary:hover { background: #dbdbdb; }

/* Stats Bar */
.stats { display: flex; gap: 40px; margin-bottom: 20px; }
.stat-item { font-size: 16px; }
.stat-item span { font-weight: 600; }

.hero-bio { font-size: 15px; }
.hero-bio strong { font-weight: 600; display: block; margin-bottom: 5px; }
.hero-bio p { color: var(--text-dark); margin-bottom: 5px; }
.hero-bio a { color: #00376b; font-weight: 600; }

/* Main Grid */
.container { max-width: 975px; margin: 0 auto; padding: 40px 20px 80px; }

/* Highlights / Features */
.highlights-title { font-size: 14px; font-weight: 600; color: var(--text-muted); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.highlights-container { display: flex; gap: 30px; margin-bottom: 60px; overflow-x: auto; padding-bottom: 15px; }
.highlight-item { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 120px; flex-shrink: 0; }
.hl-circle { width: 77px; height: 77px; border-radius: 50%; padding: 2px; background: #dbdbdb; display: flex; align-items: center; justify-content: center; background: white; border: 1px solid #dbdbdb; }
.hl-circle span { font-size: 32px; }
.highlight-item h3 { font-size: 12px; font-weight: 600; text-align: center; }
.highlight-item p { font-size: 11px; color: var(--text-muted); text-align: center; line-height: 1.3; }

/* Image Post Style */
.post-card { background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 3px; margin-bottom: 60px; }
.post-header { padding: 14px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--border-color); }
.post-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(45deg, var(--ig-orange), var(--ig-magenta)); padding: 2px; }
.post-avatar div { width: 100%; height: 100%; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: bold; }
.post-header strong { font-size: 14px; }
.post-img { width: 100%; display: block; border-bottom: 1px solid var(--border-color); }
.post-content { padding: 14px; }
.post-content p { font-size: 14px; margin-bottom: 10px; line-height: 1.6; }
.post-content p strong { margin-right: 5px; }
.post-tags { color: #00376b; }

/* FAQ List */
.faq-section { max-width: 600px; margin: 0 auto 60px; }
.faq-item { margin-bottom: 25px; }
.faq-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* Footer */
.footer { max-width: 975px; margin: 0 auto; padding: 40px 20px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-links { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 12px; color: var(--text-muted); }
.footer-links a:hover { text-decoration: underline; }
.footer p { font-size: 12px; color: var(--text-muted); margin-bottom: 30px; }

/* Responsive */
@media (max-width: 735px) {
    .hero { flex-direction: column; align-items: center; gap: 30px; padding-bottom: 24px; }
    .hero-avatar { width: 80px; height: 80px; }
    .hero-header { justify-content: center; }
    .stats { justify-content: center; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 12px 0; margin-bottom: 12px; width: 100%; gap: 0; }
    .stat-item { flex: 1; text-align: center; display: flex; flex-direction: column; font-size: 14px; }
    .hero-bio { text-align: center; padding: 0 16px; }
    .nav-links { display: none; }
}