
:root {
  --bg-body: #1a0b2e;
  --text-primary: #ffffff;
  --text-secondary: #d1d5db;
  --gradient: linear-gradient(135deg, #ff0080, #7928ca);
  --card-bg: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; background: var(--bg-body); color: var(--text-primary); }
a { color: #ff0080; text-decoration: none; }

header { background: rgba(26, 11, 46, 0.8); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-container { padding: 1.5rem; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
nav ul { display: flex; gap: 2rem; list-style: none; }
nav a { color: white; font-weight: 600; }

main { max-width: 1200px; margin: 0 auto; padding: 2rem; }
.hero { text-align: center; padding: 5rem 1rem; background: radial-gradient(circle at center, #2d1b4e 0%, #1a0b2e 100%); border-radius: 20px; margin-bottom: 4rem; border: 1px solid var(--border); }
.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }
.article-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; padding: 1rem; transition: 0.3s; }
.article-card:hover { border-color: #ff0080; transform: scale(1.02); background: rgba(255, 255, 255, 0.1); }
.article-card img { width: 100%; height: 220px; object-fit: cover; border-radius: 16px; margin-bottom: 1rem; }
.article-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.read-more { display: inline-block; margin-top: 1rem; background: var(--gradient); padding: 0.5rem 1.5rem; border-radius: 30px; color: white; font-weight: bold; }

footer { border-top: 1px solid var(--border); padding: 3rem; text-align: center; margin-top: 4rem; color: var(--text-secondary); }
