@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #ed2a7a;
  --primary-hover: #d61c65;
  --bg-color: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphism utility */
.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.02);
    border: 1px solid rgba(255,255,255,0.4);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-bottom: 40px;
}

.search-input {
    width: 100%;
    max-width: 600px;
    padding: 16px 24px;
    border-radius: 9999px;
    border: 2px solid transparent;
    font-size: 16px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(237, 42, 122, 0.2);
}

.article-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 9999px;
    display: inline-block;
    transition: background 0.2s ease;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    color: white;
}

/* Article Content Styles */
.prose h2 { font-size: 1.5rem; font-weight: 600; margin-top: 2rem; margin-bottom: 1rem; color: var(--text-main); }
.prose p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.prose strong { color: var(--text-main); font-weight: 600; }
.prose ul, .prose ol { margin-bottom: 1.25rem; padding-left: 1.5rem; color: var(--text-muted); }
.prose li { margin-bottom: 0.5rem; }
