/* ========== VARIABLES ========== */
:root {
  --bg: #050507;
  --muted: #a6a6b0;
  --text: #e6eef6;
  --accent: #F33F5E;
  --accent-2: #e8317a;
  --glass: rgba(255, 255, 255, 0.03);
  --card: #0c0c0f;
  --max: 1160px;
  --radius: 16px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  --font: "Manrope", "Inter", sans-serif;
}

/* ========== RESET ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--font);
  background: linear-gradient(180deg, #050507 0%, #0b0b0d 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== HEADER ========== */
.blog-header {
  position: sticky;
  top: 0;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 50;
}

.blog-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.logo a {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  padding-left: 20px;
}
.nav-links a {
  margin-left: 1.4rem;
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s;
  padding-right: 20px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-2);
}

/* ========== HERO ========== */
.hero {
  text-align: center;
  padding: 64px 20px 48px;
}
.hero h2 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ========== BLOG LIST PAGE ========== */
.blog-list {
  display: grid;
  gap: 2rem;
  margin: 2rem auto 4rem;
}
.blog-card {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
}
.blog-card h3 a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
}
.blog-card h3 a:hover {
  color: var(--accent-2);
}
.blog-card p {
  margin: 0.8rem 0 1rem;
  color: var(--muted);
}
.read-more {
  display: inline-block;
  font-weight: 400;
  text-decoration: none;

  color: #ffffffa0;
  padding: 2px 14px;
  border-radius: 10px;
  transition: transform 0.2s ease;
}
.read-more:hover {
  transform: translateY(-2px);
}

/* ========== SINGLE ARTICLE PAGE ========== */
.article {
  background: var(--card);
  padding: 32px;
  margin: 2rem auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 860px;
}
.article h1, 
.article h2, 
.article h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: var(--accent-2);
}
.article p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}
.article img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin: 1.5rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}
.meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 14px;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--muted);
}

/* ========== FOOTER ========== */
.blog-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 28px 20px;
  margin-top: 48px;
  text-align: center;
  color: var(--muted);
}
.blog-footer a {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease;
}
.blog-footer a:hover {
  transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 700px) {
  .blog-card, .article {
    padding: 20px;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .blog-card h3 a {
    font-size: 1.2rem;
  }
}/* ====== BLOG ARTICLE ====== */
.blog-article {
  max-width: 800px;
  margin: 2rem auto;
}

.blog-article h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-2);
}

.blog-article .meta {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ====== POST CARD STYLE ====== */
.post-card {
  background: var(--card);
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.6);
}

.post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;   /* perfect circle */
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}


.post-header strong {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.post-header .meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.post-body h2 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--accent-2);
}

.post-body p {
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.post-body img {
  width: 100%;
  border-radius: 12px;
  margin: 12px 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

.post-body blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 14px;
  font-style: italic;
  color: var(--muted);
  margin: 1rem 0;
}

/* ====== HERO TITLE FOR EXAM ARTICLE ====== */
.hero-exam {
  padding: 60px 20px 50px;
  text-align: center;
  color: #fff;
}

.hero-exam h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.hero-exam .meta {
  font-size: 1rem;
  opacity: 0.9;
  font-style: italic;
}

/* ====== SPECIAL EXAM ARTICLE CARD ====== */
.special-exam {
  background: #0d0d11;
  padding: 36px;
  margin-top: -40px; /* overlaps hero slightly */
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.65);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.special-exam p {
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
  line-height: 1.75;
  color: var(--text);
}

.special-exam h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  color: var(--accent-2);
  font-size: 1.35rem;
  font-weight: 700;
}

.special-exam .read-more {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}



/* ====== HERO TITLE FOR LOVE ARTICLE ======dating rules
 */
.hero-article {
 
  padding: 60px 20px 50px;
  text-align: center;
  color: #fff;
}

.hero-article h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.hero-article .meta {
  font-size: 1rem;
  opacity: 0.9;
  font-style: italic;
}

/* ====== SPECIAL LOVE ARTICLE CARD ====== */
.special-love {
  background: #0d0d11;
  padding: 36px;
  margin-top: -40px; /* overlaps hero slightly */
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.65);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.special-love p {
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
  line-height: 1.7;
}

.special-love h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  color: var(--accent-2);
  font-size: 1.35rem;
  font-weight: 700;
}

/* ================= WHY JIGGY PAGE ================= */
:root {
  --wj-bg: #050507;
  --wj-muted: #a6a6b0;
  --wj-text: #e6eef6;
  --wj-accent: #F33F5E;
  --wj-accent-2: #e8317a;
  --wj-card: #0c0c0f;
  --wj-radius: 16px;
  --wj-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  --wj-font: "Manrope", "Inter", sans-serif;
}

/* Body & container */
body.why-jiggy {
  background: var(--wj-bg);
  color: var(--wj-text);
  font-family: var(--wj-font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.why-jiggy .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
body.why-jiggy .blog-header {
  position: sticky;
  top: 0;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 50;
}
body.why-jiggy .blog-header .logo a {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
}
body.why-jiggy .nav-links a {
  margin-left: 1.4rem;
  text-decoration: none;
  color: var(--wj-muted);
  font-weight: 600;
  transition: color 0.2s;
}
body.why-jiggy .nav-links a:hover,
body.why-jiggy .nav-links a.active {
  color: var(--wj-accent-2);
}

/* Hero section */
body.why-jiggy .hero-article {
  text-align: center;
  padding: 60px 20px 50px;
}
body.why-jiggy .hero-article h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.6rem;
}
body.why-jiggy .hero-article .meta {
  font-size: 1rem;
  opacity: 0.9;
  font-style: italic;
  margin-bottom: 2rem;
}

/* Article content */
body.why-jiggy .special-article {
  background: var(--wj-card);
  padding: 36px;
  border-radius: var(--wj-radius);
  box-shadow: var(--wj-shadow);
  max-width: 860px;
  margin: -40px auto 80px;
  position: relative;
}
body.why-jiggy .special-article h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--wj-accent-2);
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
}
body.why-jiggy .special-article p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
body.why-jiggy .special-article ul {
  margin: 1rem 0 1.5rem 20px;
  color: var(--wj-text);
}
body.why-jiggy .special-article li {
  margin-bottom: 0.8rem;
}

/* Links */
body.why-jiggy a.read-more {
  display: inline-block;
  color: var(--wj-accent);
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: transform 0.2s ease;
}
body.why-jiggy a.read-more:hover {
  transform: translateY(-2px);
}

/* Footer */
body.why-jiggy .blog-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 28px 20px;
  text-align: center;
  color: var(--wj-muted);
}

/* Responsive */
@media (max-width: 700px) {
  body.why-jiggy .hero-article h1 {
    font-size: 2rem;
  }
  body.why-jiggy .special-article {
    padding: 24px;
    margin-top: -30px;
  }
}

/* ================= UNIVERSITY 101 PAGE ================= */
:root {
  --u101-bg: #060608;
  --u101-text: #f0f3f9;
  --u101-muted: #a1a1ac;
  --u101-accent: #F33F5E;
  --u101-accent-2: #e8317a;
  --u101-card: #0d0d12;
  --u101-radius: 18px;
  --u101-shadow: 0 14px 36px rgba(0,0,0,0.65);
  --u101-font: "Manrope", "Inter", sans-serif;
}

/* Body */
body.university-101 {
  background: var(--u101-bg);
  color: var(--u101-text);
  font-family: var(--u101-font);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.university-101 .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero */
body.university-101 .hero-article {
  padding: 70px 20px 60px;
  text-align: center;
  background: var(--u101-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.university-101 .hero-article h1 {
  font-size: 2.8rem;
  font-weight: 800;
}
body.university-101 .hero-article .meta {
  font-size: 1rem;
  color: var(--u101-muted);
  margin-top: 0.5rem;
}

/* Article content */
body.university-101 .special-article {
  background: var(--u101-card);
  padding: 40px;
  border-radius: var(--u101-radius);
  box-shadow: var(--u101-shadow);
  max-width: 860px;
  margin: -30px auto 80px;
  position: relative;
}
body.university-101 .special-article h2 {
  color: var(--u101-accent-2);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 1.8rem;
}
body.university-101 .special-article p {
  margin-bottom: 1.4rem;
  font-size: 1.08rem;
}
body.university-101 .special-article ul {
  margin: 1rem 0 1.5rem 22px;
}
body.university-101 .special-article li {
  margin-bottom: 0.9rem;
  line-height: 1.6;
}

/* Fun tip highlight */
body.university-101 .pro-tip {
  background: rgba(63,140,255,0.1);
  border-left: 4px solid var(--u101-accent);
  padding: 14px 16px;
  border-radius: 12px;
  font-style: italic;
  margin: 1.5rem 0;
}

/* Responsive */
@media (max-width: 700px) {
  body.university-101 .hero-article h1 {
    font-size: 2.1rem;
  }
  body.university-101 .special-article {
    padding: 24px;
  }
}
