@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Noto+Sans+SC:wght@300;400;700&display=swap');

:root {
  --bg-color: #fff6f8;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --text-primary: #3d2235;
  --text-secondary: #7e5c74;
  --color-pink: #ff4b91;
  --color-purple: #9258f9;
  --color-cyan: #009ebf;
  --color-green: #10b981;
  --color-orange: #f59e0b;
  --border-color: rgba(255, 75, 145, 0.15);
  --border-hover: rgba(255, 75, 145, 0.35);
  --font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-family);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Background canvas and grid */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 75, 145, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 75, 145, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  pointer-events: none;
}

/* Glowing radial blur spots */
.glow-spot {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 88, 249, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}
.glow-spot-1 { top: 10%; left: -100px; }
.glow-spot-2 { top: 50%; right: -150px; background: radial-gradient(circle, rgba(255, 75, 145, 0.12) 0%, transparent 70%); }
.glow-spot-3 { bottom: 10%; left: 20%; background: radial-gradient(circle, rgba(0, 158, 191, 0.1) 0%, transparent 70%); }

/* Mouse Cursor Trail Particle */
.cursor-trail {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  box-shadow: 0 0 10px var(--color-pink), 0 0 20px var(--color-pink);
}

/* Main Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography & Pink-White Gradient */
.gradient-text {
  background: linear-gradient(135deg, #ff1a75 0%, #ff5c8a 50%, #7e2d5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

/* Button Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(90deg, var(--color-pink), var(--color-purple));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 75, 145, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 75, 145, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(255, 75, 145, 0.05);
}

.btn-secondary:hover {
  border-color: var(--color-pink);
  background: rgba(255, 75, 145, 0.05);
  transform: translateY(-3px);
}

/* Header / Navigation */
header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(255, 246, 248, 0.85);
  border-bottom: 1px solid rgba(255, 75, 145, 0.1);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--color-pink);
}

/* Hero Section (H1 + Speed Dashboard) */
.hero-section {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 56px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

/* Speed Dashboard Container (Right side of Hero) */
.speed-dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(255, 75, 145, 0.08);
  position: relative;
  overflow: hidden;
}

.speed-dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-pink), var(--color-cyan), var(--color-purple));
}

.dashboard-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 20px;
}

.dashboard-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.dashboard-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  background: rgba(255, 75, 145, 0.1);
  color: var(--color-pink);
  border-radius: 4px;
  white-space: nowrap;
}

.dashboard-protocol {
  font-size: 12px;
  color: var(--text-secondary);
  margin-left: 18px; /* Offset to align with title text, skipping the pulse dot */
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--color-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-green);
  animation: pulse-glow 1.5s infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 1; }
}

.speed-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.speed-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 75, 145, 0.08);
  transition: var(--transition);
}

.speed-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--border-hover);
}

.node-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.node-flag {
  font-size: 20px;
}

.node-name {
  font-weight: 600;
  font-size: 14px;
}

.node-speed-bar-container {
  width: 80px;
  height: 6px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.node-speed-bar {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-pink), var(--color-cyan));
  width: 0%;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.node-ping {
  font-family: monospace;
  font-size: 14px;
  color: var(--color-green);
  font-weight: bold;
}

/* H2 Article Section */
.articles-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.articles-scroll-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 5px 30px 5px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-pink) rgba(0, 0, 0, 0.03);
}

.articles-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.articles-scroll-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
}

.articles-scroll-container::-webkit-scrollbar-thumb {
  background: var(--color-pink);
  border-radius: 10px;
}

.article-card {
  flex: 0 0 350px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 380px;
  backdrop-filter: blur(10px);
}

.article-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(255, 75, 145, 0.08);
}

.article-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 75, 145, 0.08);
  color: var(--color-pink);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  width: fit-content;
}

.article-title {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 48px;
}

.article-summary {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-link {
  color: var(--color-cyan);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  margin-top: auto;
}

.article-link:hover {
  color: var(--color-pink);
}

/* H3 Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: radial-gradient(ellipse at center, rgba(189, 88, 249, 0.03) 0%, transparent 70%);
}

.pricing-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 5px 40px 5px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-pink) rgba(0, 0, 0, 0.03);
}

.pricing-container::-webkit-scrollbar {
  height: 8px;
}

.pricing-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
}

.pricing-container::-webkit-scrollbar-thumb {
  background: var(--color-pink);
  border-radius: 10px;
}

.pricing-card {
  flex: 0 0 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.pricing-card.popular {
  border-color: var(--color-pink);
  background: rgba(255, 75, 145, 0.06);
  box-shadow: 0 10px 40px rgba(255, 75, 145, 0.12);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: -35px;
  background: linear-gradient(90deg, var(--color-pink), var(--color-purple));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 40px;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(255, 75, 145, 0.2);
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px rgba(255, 75, 145, 0.12);
}

.plan-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.plan-price-wrapper {
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
}

.plan-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
}

.plan-period {
  font-size: 15px;
  color: var(--text-secondary);
  margin-left: 6px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 35px;
}

.plan-features li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
}

.feature-check {
  color: var(--color-pink);
  font-weight: bold;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

/* H4 Reviews & Live Online Stats Section */
.reviews-stats-section {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.reviews-carousel-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.review-slide {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: absolute;
  left: 40px;
  right: 40px;
  display: none;
}

.review-slide.active {
  opacity: 1;
  transform: translateX(0);
  display: block;
  position: relative;
  left: 0;
  right: 0;
}

.review-quote {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  border: 2px solid rgba(255, 75, 145, 0.2);
}

.author-meta h4 {
  font-size: 15px;
  font-weight: 700;
}

.author-meta p {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Global Stats Card */
.stats-card {
  background: linear-gradient(135deg, rgba(255, 75, 145, 0.06) 0%, rgba(189, 88, 249, 0.06) 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 75, 145, 0.05);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.stats-card::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 158, 191, 0.15) 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
  filter: blur(20px);
}

.stats-icon {
  font-size: 40px;
  margin-bottom: 16px;
  animation: float 4s infinite ease-in-out;
}

.stats-number {
  font-size: 54px;
  font-weight: 800;
  color: var(--color-pink);
  margin-bottom: 8px;
  font-family: monospace;
  letter-spacing: -1px;
  text-shadow: 0 0 15px rgba(255, 75, 145, 0.25);
}

.stats-label {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stats-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-green);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 16px;
}

/* H5 FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.faq-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.faq-toggle-icon {
  font-size: 18px;
  color: var(--color-pink);
  transition: transform 0.3s ease;
}

.faq-card.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.faq-card.active .faq-answer {
  max-height: 200px;
  margin-top: 16px;
}

/* H6 Protection Section */
.protection-section {
  padding: 80px 0;
  text-align: center;
  background: radial-gradient(ellipse at bottom, rgba(255, 75, 145, 0.04) 0%, transparent 60%);
}

.protection-section h6 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.protection-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px auto;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 16px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.device-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 20px rgba(255, 75, 145, 0.05);
}

.device-icon {
  font-size: 36px;
  color: var(--color-cyan);
  margin-bottom: 12px;
}

.device-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Footer & PBN Links (Core Task 2) */
footer {
  padding: 60px 0 40px 0;
  background: #ffe5ec;
  border-top: 1px solid rgba(255, 75, 145, 0.15);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo span {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

.footer-text {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Friendship Links Section for PBN Weight Transfusion */
.friendship-links {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 75, 145, 0.1);
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.friendship-links a {
  font-size: 12px;
  color: rgba(126, 92, 116, 0.6); /* low-key / blending style for light theme */
  text-decoration: none;
  transition: var(--transition);
}

.friendship-links a:hover {
  color: var(--color-pink);
  text-shadow: 0 0 8px var(--color-pink);
}

.copyright {
  font-size: 12px;
  color: rgba(126, 92, 116, 0.5);
  margin-top: 16px;
}

/* Anime girl illustration decoration layout */
.hero-artwork {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-artwork::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 75, 145, 0.08) 0%, transparent 60%);
  z-index: -1;
}

.anime-girl-svg {
  width: 100%;
  max-width: 450px;
  height: auto;
}

/* ==========================================================================
   Responsive Adaptation (Mobile Friendly)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 0;
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .hero-content p {
    margin: 0 auto 30px auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .speed-dashboard {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .reviews-stats-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .faq-container {
    grid-template-columns: 1fr;
  }
  
  .device-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 34px;
  }
  
  .section-header h2 {
    font-size: 30px;
  }
  
  .device-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
  }
  
  .device-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-carousel-wrapper {
    padding: 24px;
  }
}

/* ==========================================================================
   Blog Article Reading Styles
   ========================================================================== */
.blog-wrapper {
  max-width: 800px;
  margin: 60px auto 100px auto;
  padding: 0 20px;
}

.blog-meta-top {
  margin-bottom: 24px;
}

.blog-main-title {
  font-size: 38px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-meta-info {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 121, 198, 0.1);
  padding-bottom: 16px;
  margin-bottom: 30px;
}

.blog-content {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.8;
}

.blog-content h2 {
  font-size: 26px;
  color: #ff1a75;
  margin: 40px 0 20px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 75, 145, 0.12);
}

.blog-content h3 {
  font-size: 20px;
  color: var(--color-purple);
  margin: 30px 0 16px 0;
}

.blog-content p {
  margin-bottom: 24px;
  text-align: justify;
}

.blog-content strong {
  color: var(--color-pink);
}

.blog-content ul, .blog-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.blog-content li {
  margin-bottom: 8px;
}

.blog-content blockquote {
  border-left: 4px solid var(--color-pink);
  background: rgba(255, 75, 145, 0.04);
  padding: 16px 24px;
  border-radius: 0 12px 12px 0;
  margin: 30px 0;
  font-style: italic;
}

.blog-cta-box {
  background: linear-gradient(135deg, rgba(255, 75, 145, 0.05) 0%, rgba(189, 88, 249, 0.05) 100%);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 20px;
  margin: 50px 0;
  text-align: center;
}

.blog-cta-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #ff1a75;
}

.blog-cta-box p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.blog-internal-links {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 75, 145, 0.12);
}

.blog-internal-links h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.blog-internal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding-left: 0 !important;
}

.blog-internal-list a {
  color: var(--color-cyan);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.blog-internal-list a:hover {
  color: var(--color-pink);
  padding-left: 4px;
}

/* ==========================================================================
   Anime Background Decorations Styling
   ========================================================================== */
.bg-decorations {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-decor-girl {
  position: absolute;
  right: -5%;
  top: 15%;
  width: 550px;
  height: auto;
  opacity: 0.08; /* Subtle and high-end translucent watermark styling */
  filter: blur(1px);
  animation: float-girl 12s infinite ease-in-out;
}

.bg-decor-pig {
  position: absolute;
  opacity: 0.05; /* Subtle watermark styling */
  filter: blur(1px);
}

.bg-decor-pig-1 {
  left: 5%;
  top: 25%;
  width: 150px;
  height: auto;
  animation: float-pig 8s infinite ease-in-out;
}

.bg-decor-pig-2 {
  right: 15%;
  bottom: 10%;
  width: 200px;
  height: auto;
  animation: float-pig 10s infinite ease-in-out;
}

@keyframes float-girl {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes float-pig {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-15px) rotate(-3deg) scale(1.03); }
}

@media (max-width: 992px) {
  .bg-decor-girl {
    width: 350px;
    right: -10%;
    top: 30%;
    opacity: 0.06;
  }
  .bg-decor-pig-1 {
    width: 100px;
  }
  .bg-decor-pig-2 {
    width: 120px;
  }
}

