@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;600;700&display=swap');
/* 🌌 Base Reset */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* 🌑 Theme Colors */
    body {
      font-family: 'Be Vietnam Pro', sans-serif;
      background: linear-gradient(145deg, #1e1e2f, #2c2c44);
      color: #f0f0f0;
      line-height: 1.4;
      padding: 1.6rem;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: flex-start;
    }
    
    /* Comment Area */
    textarea {
  width: 100%;
  height: 120px;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 8px;
  background-color: #f9f9ff;
  resize: vertical;
  font-size: 14px;
}
    input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #aaa;
  background-color: #fefefe;
  margin-bottom: 10px;
  font-size: 14px;
}
#comment-section p {
  border-left: 4px solid #9a6dfc;
  background-color: #3a354a;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  font-size: 0.75rem;
}
input, textarea {
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus, textarea:focus {
  border-color: #9a6dfc;
  box-shadow: 0 0 5px rgba(154, 109, 252, 0.5);
  outline: none;
}

    /* 📦 Article Box */
    .article {
      background-color: rgba(255, 255, 255, 0.05);
      padding: 2rem;
      border-radius: 1.5rem;
      max-width: 800px;
      width: 100%;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    /* ✍️ Typography */
    h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      margin-bottom: 1rem;
      color: #ffffff;
    }

    h2 {
      font-size: clamp(0.8rem, 0.8vw, 1rem);
      font-weight: 600;
      margin: 2rem 0 1rem;
      color: #ddd;
    }
    h3 {
      font-size: clamp(0.8rem, 0.8vw, 1rem);
      font-weight: 600;
      margin: 2rem 0 1rem;
      color: #ddd;
    }
    p {
      font-size: clamp(0.9rem, 0.9vw, 1.25rem);
      margin-bottom: 1.2rem;
      color: #e0e0e0;
    }

a {
  all: unset;
  cursor: pointer; /* opsional: biar tetap keliatan bisa diklik */
}
     /* 🟪 Purple Details */
    .highlight {
      color: #8c52ff;
      font-weight: bold;}

    /* 🧩 Responsive Tweak */
    @media (max-width: 500px) {
      .article {
        padding: 1.5rem;
        border-radius: 1rem;
       }
      }
        /* FLOATING NAVIGATION PNG */
    .floating-nav {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 16px;
      z-index: 999;
    }

    .floating-nav a {
      display: inline-flex;
      align-items:
      justify-content: center;
      background: rgba(95, 75, 139, 0.85);
      border-radius: 12px;
      padding: 6px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
      transition: transform 0.2s ease, filter 0.2s ease;
    }

    .floating-nav a img {
      width: 32px; /* Adjust to taste */
      height: auto;
      object-fit: contain;
      display: block;
    }

    .floating-nav a:hover {
      transform: translateY(-4px);
      filter: drop-shadow(0 0 10px #b38cff);
    }

    @media (max-width: 600px) {
      .floating-nav a img {
        width: 28px;
      }
    }
       .chapter {
      display: flex;
  justify-content: center;
  align-items: center;
      padding: 0.75rem 1rem;
      background-color: #3a354a;
      border-radius: 0.5rem;
      margin-bottom: 0.5rem;
      transition: background 0.2s ease;
    }

    .chapter:hover {
      background-color: #4b4461;
    }

    .chapter a {
      color: #d6b3ff;
      font-weight: 600;
      text-decoration: none;text-align: center;
  flex: 1; /* buat tiap link ambil ruang seimbang */
  font-size: 0.8rem;
}
    }