:root {
  --accent: #00ffe7;
  --bg: #090C10;
  --bg-secondary: #191d23;
  --text-primary: #fff;
  --text-secondary: #aaa;
  --button-radius: 6px;
  --shadow: 0 6px 32px rgba(0,255,231,0.10), 0 1.5px 7px rgba(0,0,0,0.18);
  --max-width: 900px;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(145deg, #111315 0%, #181e25 50%, #14181c 100%);
  color: var(--text-primary);
  min-height: 100vh;
  padding: 2.5rem 1rem;
  display: flex; 
  justify-content: center;
}

main.article-container {
  background: var(--bg-secondary);
  max-width: var(--max-width);
  width: 100%;
  border-radius: 18px;
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow);
  position: relative;
}

header.article-header {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  position: relative;
}

h1.article-title {
  font-weight: 800;
  font-size: 2.1rem;
  background: linear-gradient(90deg, var(--accent) 15%, #26e7ff 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
  letter-spacing: 1.2px;
  line-height: 1.1;
}

.article-subtitle {
  color: #aaa;
  font-weight: 600;
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.article-meta {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.article-meta .author-info {
  font-weight: 600;
  color: var(--accent);
}

.article-meta .date {
  white-space: nowrap;
}

.source-link {
  font-size: 0.9em;
  color: var(--accent);
  margin-left: 0.4em;
  opacity: 0.85;
}
.source-link a {
  color: var(--accent);
  text-decoration: underline dotted;
}
.source-link a:hover, .source-link a:focus {
  color: #44fff6;
  text-decoration: underline;
}

.article-content p,
.article-content ul,
.article-content li {
  font-weight: 300;
  font-size: 1.12rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  max-width: 760px;
}

.article-content h2,
.article-content h3 {
  color: var(--accent);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  font-size: 1.25rem;
  line-height: 1.3;
}

.article-img {
  width: 100%;
  max-width: 790px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 0 24px rgba(0,255,231,0.13);
  border: 1.5px solid var(--accent);
  margin: 1.2rem 0 2.3rem 0;
  background: var(--bg);
  min-height: 180px;
}

.img-caption {
  color: var(--text-secondary);
  font-size: 0.98rem;
  font-style: italic;
  text-align: center;
  margin-bottom: 1.5rem;
}

.related-articles {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1.5px solid rgba(0,255,231,0.18);
  max-width: 760px;
}
.related-articles-title {
  color: var(--accent);
  letter-spacing: 0.09em;
  font-weight: 700;
  font-size: 1.29rem;
  margin-bottom: 1.4rem;
}
.related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  justify-content: center;
}
.related-list li {
  flex: 1 1 230px;
  min-width: 150px;
  max-width: 320px;
  background: var(--bg);
  border-radius: 12px;
  border: 1.4px solid var(--accent);
  box-shadow: 0 0 14px rgba(0,255,231,0.07);
  margin-bottom: 0.5rem;
  transition: border-color 0.21s, box-shadow 0.21s;
}
.related-list li a {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  padding: 1.1rem 1.5rem;
  font-size: 1.07rem;
  text-decoration: none;
  border-radius: 12px;
  transition: color 0.18s;
}
.related-list li a:hover {
  color: var(--accent);
  text-decoration: underline;
  background: rgba(0,255,231,0.07);
}
@media (max-width: 900px) {
  main.article-container { padding: 2rem; }
  .related-list li { max-width: 100%; }
}
@media (max-width: 600px) {
  main.article-container { padding: 1.2rem 0.8rem; }
  h1.article-title { font-size: 1.35rem; }
  .article-subtitle { font-size: 1rem; }
  .related-list { flex-direction: column; gap: 1rem; }
  .related-list li { max-width: 100%; }
}
/* ---- SKY's NADAAN Song Promo Box ---- */
.nadaan-promo {
  background: linear-gradient(120deg, #10131a 70%, #151c2c 100%);
  border-radius: 18px;
  border: 2.5px solid #00ffe7;
  box-shadow: 0 0 20px 4px rgba(0,255,231,0.11);
  max-width: 750px;
  margin: 2rem auto 2.4rem auto;
  padding: 1.4rem 1.2rem 2rem 1.2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
}

.nadaan-info {
  flex: 1;
  text-align: left;
}

.nadaan-title {
  color: #00ffe7;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-bottom: 0.4rem;
  font-family: 'Outfit', sans-serif;
}
.nadaan-desc {
  color: #ccc;
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  font-style: italic;
}
.nadaan-listen {
  display: inline-block;
  background: #00ffe7;
  color: #090c10;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 0.48rem 1.2rem;
  text-decoration: none;
  margin-top: 0.2rem;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,255,231,0.15);
}
.nadaan-listen:hover, .nadaan-listen:focus {
  background: #1fe7cf;
  color: #181e25;
}

.nadaan-video {
  min-width: 220px;
  max-width: 350px;
  width: 36vw;
}
.nadaan-video iframe {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  border: none;
}

@media (max-width: 820px) {
  .nadaan-promo {flex-direction: column-reverse; align-items: stretch; gap: 0.6rem; padding: 1rem 0.7rem 1.4rem 0.7rem;}
  .nadaan-video {width: 100%; max-width: 100%;}
  .nadaan-video iframe {height: 185px;}
  .nadaan-info {text-align: center;}
}

/* Extra small screens */
@media (max-width: 480px) {
  .nadaan-promo {padding: 0.65rem 0.2rem 1rem 0.2rem;}
  .nadaan-title {font-size: 1.07rem;}
  .nadaan-desc {font-size: 0.97rem;}
  .nadaan-listen {font-size: 0.99rem; padding: 0.36rem 0.8rem;}
  .nadaan-video iframe {height: 150px;}
}
.site-footer {
  background: #10131a;
  border-top: 2px solid #00ffe7;
  margin-top: 3.5rem;
  padding: 1.5rem 0 1rem 0;
  width: 100%;
  color: #aaa;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-flex {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-logo-link {
  display: flex;
  align-items: center;
}
.footer-logo {
  height: 38px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0,255,231,0.10);
  background: #181e25;
  border: 1px solid #00ffe7;
  margin-right: 0;
  margin-left: 0.4rem;
  transition: height 0.2s;
}
.footer-nav {
  display: flex;
  gap: 1.2rem;
}
.footer-btn {
  background: rgba(0,255,231,0.09);
  border: 1px solid transparent;
  border-radius: 7px;
  color: #aaa;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.38rem 1.08rem;
  transition: background 0.18s, color 0.18s, border 0.18s;
  letter-spacing: 0.01em;
  display: inline-block;
}
.footer-btn:hover, .footer-btn:focus {
  color: #00ffe7;
  background: rgba(0,255,231,0.18);
  border: 1px solid #00ffe7;
  text-decoration: underline;
}
@media (max-width: 700px) {
  .footer-flex {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .footer-nav {
    gap: 0.7rem;
  }
}
@media (max-width: 500px) {
  .site-footer {
    padding: 1rem 0 0.65rem 0;
  }
  .footer-logo {
    height: 28px;
  }
  .footer-nav {
    gap: 0.4rem;
  }
  .footer-btn {
    font-size: 0.98rem;
    padding: 0.34rem 0.7rem;
  }
}

.article-img {
  width: 100%;
  max-width: 790px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 0 24px rgba(0,255,231,0.13);
  border: 1.5px solid var(--accent);
  margin: 1.2rem 0 2.3rem 0;
  background: var(--bg);
  min-height: 180px;
}
.img-caption {
  color: var(--text-secondary);
  font-size: 0.98rem;
  font-style: italic;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* END COLUMN (not footer) styling */
.borderline-end-column {
  background: #13161c;
  border-top: 2px solid #00ffe7;
  margin-top: 3.2rem;
  padding: 1.3rem 0 1rem 0;
  width: 100%;
  color: #aaa;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.end-logo-link {
  display: flex;
  align-items: center;
  margin-bottom: 1.3rem;
}
.end-logo {
  height: 36px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0,255,231,0.10);
  background: #181e25;
  border: 1px solid #00ffe7;
}
.end-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.end-btn {
  background: rgba(0,255,231,0.09);
  border: 1px solid transparent;
  border-radius: 7px;
  color: #aaa;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 0.38rem 1.05rem;
  transition: background 0.15s, color 0.15s, border 0.15s;
  letter-spacing: 0.01em;
  display: inline-block;
}
.end-btn:hover, .end-btn:focus {
  color: #00ffe7;
  background: rgba(0,255,231,0.18);
  border: 1px solid #00ffe7;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .borderline-end-column { padding: 1rem 0 0.7rem 0; }
  .end-logo { height: 28px; }
  .end-links { gap: 0.7rem; }
  .end-btn { font-size: 0.97rem; padding: 0.35rem 0.7rem; }
}
.affiliate-book-promo {
  background: linear-gradient(135deg, #1a1f29 0%, #151b24 100%);
  border-radius: 14px;
  border: 2px solid #00ffe7; /* Your neon accent */
  box-shadow: 0 3px 16px rgba(0, 255, 231, 0.15);
  padding: 1.5rem 1.2rem;
  margin: 2.5rem 0 2.2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}


.affiliate-book-image {
  max-width: 140px;
  width: 25%;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,255,231,0.3);
  flex-shrink: 0;
}

.affiliate-book-msg {
  color: #fff;
  font-size: 1.07rem;
  text-align: left;
  flex: 1;
}

.affiliate-buy-btn {
  display: inline-block;
  background: #00ffe7;
  color: #191d23;
  font-weight: 800;
  padding: 0.56rem 1.3rem;
  margin: 0.95rem 0 0.3rem 0;
  border-radius: 9px;
  box-shadow: 0 3px 16px rgba(0,255,231,0.07);
  text-decoration: none;
  font-size: 1.09rem;
  transition: background 0.17s, color 0.17s;
  letter-spacing: 0.03em;
}

.affiliate-buy-btn:hover,
.affiliate-buy-btn:focus {
  background: #26e7ff;
  color: #090c10;
}

.affiliate-note {
  display: block;
  margin-top: 0.2rem;
  color: #aaa;
  font-size: 0.96rem;
  font-style: italic;
}

@media (max-width: 700px) {
  .affiliate-book-promo {
    flex-direction: column;
    text-align: center;
  }
  .affiliate-book-image {
    width: 50%;
    max-width: 180px;
    margin: 0 auto 1rem auto;
  }
  .affiliate-book-msg {
    text-align: center;
  }
}
 

