* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #0f0714; color: #e2d9f0; }
a { color: #d946ef; text-decoration: none; transition: 0.3s; }
a:hover { color: #f5b8ff; }
.navbar { background: linear-gradient(135deg, #1a0a2e, #2d1b4e); padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #6b21a8; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(12px); }
.navbar .logo { font-size: 1.8rem; font-weight: 800; background: linear-gradient(90deg, #d946ef, #f472b6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 500; letter-spacing: 1px; border-bottom: 2px solid transparent; padding-bottom: 4px; }
.nav-links a:hover { border-color: #d946ef; }
.hero { background: radial-gradient(circle at 20% 30%, #1a0a2e, #0f0714); padding: 100px 40px; text-align: center; position: relative; overflow: hidden; }
.hero h1 { font-size: 3.2rem; font-weight: 800; background: linear-gradient(135deg, #f5b8ff, #d946ef); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; color: #c4b5e0; }
.hero img { width: 100%; max-width: 900px; margin: 40px auto 0; border-radius: 24px; box-shadow: 0 0 40px rgba(217,70,239,0.3); border: 1px solid #6b21a8; }
.section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 2rem; font-weight: 700; margin-bottom: 40px; text-align: center; background: linear-gradient(90deg, #d946ef, #f472b6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card { background: #1e1130; border: 1px solid #6b21a8; border-radius: 20px; padding: 30px; box-shadow: 0 0 20px rgba(217,70,239,0.15); transition: 0.4s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 0 40px rgba(217,70,239,0.4); }
.card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; color: #f5b8ff; }
.card p { color: #b8a8d0; line-height: 1.6; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; text-align: center; }
.stat-item { background: #1e1130; padding: 30px; border-radius: 20px; border: 1px solid #6b21a8; }
.stat-item .num { font-size: 2.8rem; font-weight: 800; background: linear-gradient(135deg, #d946ef, #f472b6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-item .label { margin-top: 8px; color: #a78bc0; }
.news-item { background: #1e1130; border: 1px solid #6b21a8; border-radius: 20px; padding: 24px; margin-bottom: 20px; display: flex; gap: 20px; flex-wrap: wrap; }
.news-item img { width: 100%; max-width: 200px; border-radius: 12px; object-fit: cover; }
.news-content h3 { font-size: 1.3rem; color: #f5b8ff; margin-bottom: 6px; }
.news-content .date { font-size: 0.85rem; color: #a78bc0; margin-bottom: 10px; }
.news-content p { color: #b8a8d0; line-height: 1.7; }
.faq-item { background: #1e1130; border: 1px solid #6b21a8; border-radius: 20px; padding: 24px; margin-bottom: 16px; }
.faq-item h3 { font-size: 1.1rem; color: #f5b8ff; margin-bottom: 10px; }
.faq-item p { color: #b8a8d0; line-height: 1.7; }
.footer { background: #1a0a2e; padding: 50px 40px 30px; border-top: 1px solid #6b21a8; }
.footer .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }
.footer .footer-links a { color: #d946ef; }
.footer .footer-links a:hover { color: #f5b8ff; }
.footer .footer-bottom { text-align: center; color: #6b21a8; font-size: 0.9rem; }
.footer .footer-bottom a { color: #d946ef; margin: 0 10px; }
@media (max-width: 768px) {
  .navbar { flex-direction: column; gap: 16px; padding: 16px; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 50px 20px; }
  .news-item { flex-direction: column; }
  .news-item img { max-width: 100%; }
}