/* 2025 Neon Theme — Fixed Chrome Light Mode Bug */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL VARIABLES */
:root {
  --neon-cyan: #00f5ff;
  --neon-pink: #ff2e97;
  --neon-purple: #bd00ff;
  --neon-green: #00ff9f;
  --neon-yellow: #fff500;
  --bg-dark: #0b0d11;
  --text-light: #ffffff;
  --text-muted: #aeeeff;
}

/* BODY (Dark base) */
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--bg-dark);
  background-image: radial-gradient(circle at top left, rgba(0,245,255,0.15), transparent 60%), 
                    radial-gradient(circle at bottom right, rgba(255,46,151,0.15), transparent 60%);
  background-attachment: fixed;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s ease;
}

/* NAVIGATION */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0,245,255,0.3);
}
.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  transition: color 0.3s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--neon-cyan);
}

/* HERO SECTION */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 2rem;
}
.hero h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0,245,255,0.5);
}
.hero p {
  max-width: 700px;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ARTICLES SECTION */
.articles-section {
  padding: 3rem 2rem;
}
.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-family: "Space Grotesk", sans-serif;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0,245,255,0.5);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.article-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(0,245,255,0.3);
}
.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-content {
  padding: 1.5rem;
}
.card-content h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.card-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  background: rgba(0,0,0,0.9);
  color: var(--text-muted);
  padding: 2rem 1.5rem;
  text-align: center;
}
.footer p {
  margin: 0.3rem 0;
}
.footer-note {
  color: var(--neon-cyan);
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h2 { font-size: 2.2rem; }
  .articles-grid { grid-template-columns: 1fr; }
}
