/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #0a0a0f;
  color: #f4f4f9;
  line-height: 1.6;
}

a {
  color: #6ec6ff;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* Header */
.site-header {
  background: #111;
  border-bottom: 1px solid #333;
  padding: 1.2rem 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(to right, #6ec6ff, #d76bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.nav a {
  font-weight: 600;
  transition: color 0.3s;
}

.nav a:hover {
  color: #d76bff;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-content h2 {
  font-size: 2.5rem;
  background: linear-gradient(to right, #6ec6ff, #d76bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: #aaa;
}

/* Articles */
.articles h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.article-card {
  display: block;
  text-decoration: none;
  background: #15151f;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  color: #f4f4f9;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(110,198,255,0.3);
}

.article-card h4,
.article-card p {
  margin: 0 0 0.5rem 0;
}


.article-card p {
  font-size: 1rem;
  color: #ccc;
}

/* Footer */
.site-footer {
  background: #111;
  padding: 2rem 1rem;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-top: 4rem;
}



.about-content {
  padding: 2rem 0;
  color: #ddd;
  line-height: 1.7;
}

.about-content h2 {
  color: #00ffe1;
  margin-bottom: 1rem;
}

.about-content ul {
  margin-left: 1.25rem;
  padding-left: 1rem;
  list-style-type: disc;
}

.about-content a {
  color: #00ffe1;
  text-decoration: none;
}

.about-content a:hover {
  text-decoration: underline;
}
