/* ===============================
   ARTICLES PAGE
================================ */

.articles-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px 80px;
}

.articles-header {
  text-align: center;
  margin-bottom: 40px;
}

.articles-header h1 {
  font-family: 'Playfair Display', Georgia, cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(90deg, #624dff, #ff9ae5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.articles-header p {
  margin-top: 10px;
  opacity: 0.75;
  font-size: 15px;
}

/* ===============================
   ARTICLES GRID
================================ */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

/* ===============================
   ARTICLE CARD
================================ */

.article-card {
  background: #0f0f15;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.article-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.article-card-content {
  padding: 16px;
}

.article-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.article-card p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.45;
}

/* ===============================
   CATEGORY TAGS (optional)
================================ */

.article-tags {
  margin-top: 10px;
}

.article-tag {
  display: inline-block;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  margin-right: 6px;
  opacity: 0.8;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 480px) {
  .article-card img {
    height: 140px;
  }
}
body {
  background: #000;
  color: #eaeaea;
}
#floatingHeader {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: flex-start;
  align-items: center;

  padding: 16px 24px;
  background: linear-gradient(180deg, #1a0b2e, #07010f);
  border-bottom: 1px solid rgba(255, 0, 200, 0.25);
}
#floatingHeader.hide {
  transform: translateY(-100%);
}
#floatingHeader .logo {
  margin-left: 0;
  font-size: 26px;
}
.hero-title {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #14001f, #000);
}

.hero-title h1 {
  font-size: 72px;
  line-height: 1.05;
  text-align: center;
  color: #ff4fd8;
  font-family: 'Pacifico', cursive;
  text-shadow:
    0 0 8px rgba(255, 79, 216, 0.6),
    0 0 20px rgba(255, 79, 216, 0.4);
}
@media (max-width: 600px) {

  .hero-title {
    height: 200px;
    padding: 20px;
  }

  .hero-title h1 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow:
      0 0 6px rgba(255, 79, 216, 0.5);
  }

  #floatingHeader .logo {
    font-size: 22px;
  }

}
.ad-section {
  margin: 28px auto;
  text-align: center;
}

.ad-native {
  max-width: 420px;
  margin: 20px auto;
}

.ad-native iframe,
.ad-native div {
  max-height: 250px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .ad-native {
    max-width: 100%;
  }
}
