/* ===== VARIABLES & THEMES ===== */
:root {
  --bg: #ffffff;
  --card: #f8f9fa;
  --surface: #f1f3f5;
  --text: #11181c;
  --muted: #687076;
  --line: #e6e8eb;
  --accent: #10b981;
  --accent-light: #d1fae5;
  --trans: 280ms cubic-bezier(.4,.1,.25,1);
  --radius: 8px;
  --shadow: 0 2px 8px 0 rgba(0,0,0,0.05);
}

[data-theme="dark"] {
  --bg: #181818;;
  --card: #212121;
  --surface: #2a2a2a;
  --text: #e7e7ea;
  --muted: #8e8e93;
  --line: #757575;
  --accent: #10b981;
  --accent-light: #064e3b;
  --shadow: 0 2px 8px 0 rgba(0,0,0,0.25);
}
/* ===== END VARIABLES & THEMES ===== */

/* ===== RESET & BASE STYLES ===== */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html {
  font-size: clamp(14px, 1.2vw + 8px, 18px);
  scroll-behavior: smooth;
  background-color: #ffffff;
}

html[data-theme="dark"] {
  background-color: #0d0d0f; 
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* ===== MODIFIKASI BODY ===== */
body {
  font-family: 'Titillium Web', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding: clamp(12px, 2vw, 24px);
  padding-top: 88px; /* Tambahkan padding atas untuk memberi ruang navbar fixed */
}

/* ===== MODIFIKASI HEADER ===== */
header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: var(--card, transparent);
  
  /* GANTI DARI STICKY KE FIXED */
  position: fixed;
  top: 12px;
  left: 50%; /* Pusatkan horizontal */
  transform: translateX(-50%); /* Pusatkan horizontal */
  
  z-index: 1000; /* Tingkatkan z-index */
  width: calc(100% - 48px); /* Sesuaikan dengan padding body */
  max-width: 750px;
  margin: 0 auto;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
}


.brand {
  display: flex;
  align-items: center;
}

.brand h1 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.1px;
  font-weight: 600;
  font-family: 'Titillium Web', sans-serif;
}

.brand-name {
  display: flex;
  align-items: center;
}

.brand-name .agung {
  color: var(--text);
}

.brand-name .dev {
  color: #a0a0a0;
  font-weight: 700;
}

[data-theme="dark"] .brand-name .dev {
  color: #c0c0c0;
}
/* ===== END HEADER & BRAND ===== */

/* ===== BRAND STYLES ===== */
.brand-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-subtitle {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
  font-family: 'Titillium Web', sans-serif;
  letter-spacing: 0.5px;
}
/* ===== END BRAND STYLES ===== */

/* ===== DESKTOP NAVIGATION ===== */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 8px;
}

.desktop-nav .nav-item {
  text-decoration: none; 
}

.nav-item {
  background: var(--card, transparent);
  border: 0;
  color: var(--muted);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--trans);
  font-family: 'Titillium Web', sans-serif;
}

.nav-item:hover {
  background: #000;
  color: #fff;
}

[data-theme="dark"] .nav-item:hover {
  background: #fff;
  color: #000;
}

.nav-item.active {
  background: #000;
  color: #fff;
}

[data-theme="dark"] .nav-item.active {
  background: #fff;
  color: #000;
}

.desktop-appearance {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.desktop-appearance span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  font-family: 'Titillium Web', sans-serif;
}
/* ===== END DESKTOP NAVIGATION ===== */

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
  background: var(--card, transparent);
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
}

.mobile-menu-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.hamburger-lines {
  width: 20px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-lines span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
}
/* ===== END MOBILE MENU BUTTON ===== */

/* ===== OVERLAY MENU (MOBILE) ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(30px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
  z-index: 1000;
}

.overlay.show { 
  opacity: 1; 
  pointer-events: auto; 
}

.menu {
  width: 94%;
  max-width: 420px;
  background: var(--card, transparent);
  border-radius: var(--radius);
  margin-top: 80px;
  padding: 20px;
  transform: translateY(-20px);
  opacity: 0;
  transition: all var(--trans);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
  padding-bottom: 70px;
}

.overlay.show .menu { 
  transform: translateY(0); 
  opacity: 1; 
}

.item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--trans);
  color: var(--text);
}

.item:hover {
  background: #000;
  color: #fff;
}

[data-theme="dark"] .item:hover {
  background: #fff;
  color: #000;
}

.item.active {
  background: #000;
  color: #fff;
  font-weight: 500;
}

[data-theme="dark"] .item.active {
  background: #fff;
  color: #000;
  font-weight: 500;
}

.item span { 
  font-size: 15px; 
  font-weight: 500; 
  font-family: 'Titillium Web', sans-serif;
}

.item svg { 
  color: var(--muted); 
  transition: transform var(--trans); 
}

.item:hover svg { 
  color: var(--accent); 
  transform: translateX(2px); 
}
/* ===== END OVERLAY MENU (MOBILE) ===== */

/* ===== APPEARANCE CONTAINER ===== */
.appearance {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 10px auto;
  padding: 9px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--trans);
  width: 90%;
}

.appearance .title {
  font-size: 14px;
  font-weight: 600;
  font-family: 'Titillium Web', sans-serif;
}
/* ===== END APPEARANCE CONTAINER ===== */

/* ===== SWITCH TOGGLE ===== */
.switch {
  position: relative;
  width: 40px;
  height: 17px;
  background: #e2e2e2;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--trans);
  display: flex;
  align-items: center;
  padding: 0.5px;
}

.thumb {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
  overflow: hidden;
  position: relative;
}

.thumb svg {
  position: absolute;
  width: 14px;
  height: 14px;
  stroke: black;
  fill: none;
  transition: opacity var(--trans), transform var(--trans);
}

[data-theme="light"] .sun { opacity: 1; transform: scale(1); }
[data-theme="light"] .moon { opacity: 0; transform: scale(0.6); }

[data-theme="dark"] .sun { opacity: 0; transform: scale(0.6); }
[data-theme="dark"] .moon { opacity: 1; transform: scale(1); }

[data-theme="dark"] .thumb {
  transform: translateX(22px);
  background: #fff;
}

[data-theme="dark"] .switch { 
  background: #3E3D3D; 
}
/* ===== END SWITCH TOGGLE ===== */

/* ===== FOOTER MENU ===== */
.footer {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.footer button {
  background: var(--card, transparent);
  border: 0;
  color: var(--muted);
  padding: 8px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--trans);
}

.footer button:hover { 
  color: var(--accent); 
  background: var(--accent-light); 
}
/* ===== END FOOTER MENU ===== */

/* ===== CLOSE BUTTON ===== */
.close-menu {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--card, transparent);
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  padding: 10px 10px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--trans);
  font-family: 'Titillium Web', sans-serif;
}

.close-menu:hover {
  background: var(--accent-light);
  color: var(--accent);
  border-color: var(--accent);
}
/* ===== END CLOSE BUTTON ===== */

/* ===== RESPONSIVE DESIGN ===== */
.mobile-menu-btn {
  display: flex;
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  body {
    padding: 20px;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .desktop-nav {
    display: flex;
  }
}

@media (min-width: 1024px) {
  body {
    padding: 24px 32px;
  }

  .desktop-nav {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }
}

@media (min-width: 768px) and (pointer: fine) {
  .mobile-menu-btn {
    display: none;
  }
  
  .desktop-nav {
    display: flex;
  }
}

@media (max-width: 480px) {
  body {
    padding: 12px;
  }
  
  header {
    padding: 0 16px;
  }  
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .desktop-nav {
    display: none;
  }
}

@media (min-width: 768px), (min-device-width: 768px) and (orientation: landscape) {
  .mobile-menu-btn {
    display: none;
  }
  
  .desktop-nav {
    display: flex;
  }
}
/* ===== END RESPONSIVE DESIGN ===== */

/* ===== MAIN FOOTER ===== */
footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin-top: 40px;
}

.footer-status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 1rem;
}

.status-name {
  opacity: .8;
}

.footer-text {
  font-size: .85rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dev-status {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text-color, #fff);
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #00e676;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
  animation: pulse 1.7s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 230, 118, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
  }
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 9px 0;
  font-size: .85rem;
  opacity: .8;
}

.footer-link {
  text-decoration: none;
  color: var(--muted);
  transition: .2s;
}

.footer-link:hover {
  color: var(--text);
  opacity: .8;
}

.divider {
  opacity: .8;
}
/* ===== END MAIN FOOTER ===== */

/* ===== MAIN CONTENT BLOG ===== */
.main-content {
  padding: 5rem 0;
}

.container {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero {
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: .3rem;
}

.hero-description {
  font-size: .85rem;
  opacity: .8;
  max-width: 500px;
}

.wave-emoji {
    display: inline-block;
    animation: wave-animation 2.5s infinite;
    transform-origin: 70% 70%;
}
@keyframes wave-animation {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.blog-grid {
  display: grid;
  gap: 1.2rem;
}

.blog-card {
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: .6rem;
  transition: background .2s, border-color .2s;
  background: var(--card, transparent);
}

.blog-card:hover {
  border-color: var(--hover-border, #aaa);
}

.blog-meta {
  display: flex;
  gap: .6rem;
  font-size: .85rem;
  opacity: .8;
  margin-bottom: .4rem;
}

.blog-category {
  padding: 0 .4rem;
  border-radius: .3rem;
  opacity: .8;
  background: var(--tag-bg, rgba(0,0,0,0.05));
}

.blog-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.blog-excerpt {
  font-size: .85rem;
  line-height: 1.55;
  opacity: .8;
  margin-bottom: .7rem;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  opacity: .8;
}

.read-more {
  font-size: 12px;
  padding: .35rem .7rem;
  border-radius: .4rem;
  border: 1px solid var(--line);
  background: var(--card, transparent);
  color: var(--text);
  cursor: pointer;
  transition: all var(--trans);
}

.read-more:hover {
  background: #000;        
  color: #fff;             
  border-color: #000;
}

[data-theme="dark"] .read-more:hover {
  background: #fff;       
  color: #000;            
  border-color: #fff;
}
/* ===== END MAIN CONTENT BLOG ===== */

/* ===== FOLLOW & FOLLOWING ===== */
.follow-btn {
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid var(--line); 
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
  cursor: pointer;
  opacity: .8;
  line-height: 1;     
  box-sizing: border-box; 
  transition: background 0.25s ease, opacity 0.25s ease; 
  transform: translateY(-4px);
  background: var(--card, transparent);
}

.follow-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  opacity: .8;
}

.follow-btn.active {
  border-color: var(--text);
}
/* ===== END FOLLOW & FOLLOWING ===== */

/* ===== LEGAL PAGE (Terms & Privacy) ===== */
.legal-box {
  border: 1px solid var(--line);
  border-radius: .7rem;
  padding: 1.5rem;
  background: var(--card, transparent);
}

.legal-section {
  margin-bottom: 1.4rem;
}

.legal-section h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.legal-section p {
  font-size: .85rem;
  line-height: 1.55;
  opacity: .8;
  margin-bottom: .7rem;
}

.legal-section ul {
  padding-left: 1.2rem;
  margin-bottom: .7rem;
  opacity: .8;
}

.legal-section li {
  margin-bottom: .3rem;
  font-size: .85rem;
}

.legal-box hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 1.6rem 0;
}

.back-home {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text);
  opacity: .8;
  text-decoration: none;
  transition: .2s ease;
}

.back-home:hover {
  opacity: .8;
  color: var(--accent, var(--text));
  transform: translateX(-3px);
}

.breadcrumb {
  font-size: .9rem;
  opacity: .8;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: space-between; 
}

.breadcrumb a {
  color: var(--text);
  text-decoration: none;
  opacity: .8;
  transition: .2s ease;
}

.breadcrumb a:hover {
  opacity: .8;
  color: var(--accent, var(--text));
}

.breadcrumb .current {
  opacity: .8;
  font-weight: 500;
}

.crumb-left {
  display: flex;
  gap: 6px;
  align-items: center;
}

.audio-btn {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--card, transparent);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  transition: .2s;
}

.audio-btn:hover {
  background: var(--hover-bg, rgba(0,0,0,0.05));
}

.audio-btn svg {
  width: 15px;
  height: 15px;
  fill: var(--text, #333);
  display: none;
}

#audioBtn #iconPlay {
  display: block;
}
/* ===== END LEGAL PAGE (Terms & Privacy) ===== */

/* ===== INTRO ===== */
.stats-box {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  opacity: .8;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--card, transparent);
  padding: 6px 12px;
  border-radius: 8px;
  transition: .2s ease;
  border: 1px solid var(--line);
}

.stat-item svg {
  opacity: .8;
}

.hero .intro-hello {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== INTRO BUTTONS ===== */
.intro-buttons {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.intro-btn {
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #000;
  color: #fff;
  border-color: #000;
}

[data-theme="dark"] .intro-btn {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.intro-btn:hover {
  opacity: .8;
  transform: translateY(-1px);
}

.intro-btn.secondary {
  border: 1px solid var(--line);
  color: var(--text-secondary);
  background: var(--card, transparent);
}

.intro-btn.secondary:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.role-rotate {
  margin-top: 1px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  height: 28px;
  display: flex;
  align-items: center;
}

#roleText {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: all 0.6s cubic-bezier(.4,0,.2,1);
}
/* ===== END INTRO ===== */

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 90px 0;
  
  border-top: none;
}

.about-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.about-text {
  font-size: .85rem;
  line-height: 1.78;
  color: var(--text-secondary);
  max-width: 740px;
  margin-bottom: 18px;
  opacity: .8;
}
/* ===== END ABOUT ===== */

/* ===== LYNK.ID ===== */
.hero-link {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: var(--text-primary);
  opacity: .8;
  transition: opacity .25s ease, transform .25s ease;
}

.hero-link:hover {
  opacity: .8;
  transform: translateX(2px);
}

.hero-link-icon {
  width: 16px;
  height: 16px;
  opacity: .8;
}
/* ===== END LYNK.ID ===== */ 

/* ===== ABOUT ME NAME ===== */
.about-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 22px;
  font-size: .8rem;
  color: var(--muted);
  opacity: .8;
}

.about-meta .meta-item strong {
  color: var(--text);
  font-weight: 600;
}

.about-meta .meta-dot {
  opacity: .5;
  font-size: .9rem;
}
/* ===== END ABOUT ME NAME ===== */

/* ===== EDUCATION ===== */
.education-section {
  padding: 10px 0;
}

.education-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--text-primary);
}

.edu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.edu-item {
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card, transparent);
  transition: border-color var(--trans), background var(--trans);
}

.edu-place {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .45rem;
}

.edu-location {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.edu-desc {
  font-size: 0.85rem;
  line-height: 1.78;
  color: var(--text-secondary);
  max-width: 740px;
  margin-bottom: 18px;
  opacity: .8;
}

.edu-badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  opacity: .8;
}

.edu-place svg {
  opacity: .8;
}
/* ===== END EDUCATION ===== */

/* ===== PROJECTS ===== */
.projects-section {
  padding: 10px 0;
  margin-top: 80px;
}

.all-section {
  margin-bottom: 1.4rem;
}

.projects-detail-section {
  padding: 1rem 0;
}

.projects-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--text-primary);
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-item {
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card, transparent);
  transition: border-color var(--trans), background var(--trans);
}

.project-item:hover {
  border-color: var(--text);
}

.project-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .45rem;
}

.project-date {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.project-desc {
  font-size: .85rem;
  line-height: 1.78;
  color: var(--text-secondary);
  max-width: 740px;
  margin-bottom: 18px;
  opacity: .8;
}

.project-badge {
  display: inline-block;
  font-size: .75rem;
  padding: 4px 10px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  opacity: .8;
}

.project-name svg {
  opacity: .8;
}

.project-card {
  position: relative;
}

.project-github {
  position: absolute;
  bottom: 17px; 
  left: calc(98% - 50px); 
  opacity: 1;
  transition: opacity .15s ease, transform .15s ease;
  color: var(--text);
}

.project-github:hover {
  opacity: 1;
  transform: scale(1.08);
}

.project-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  opacity: .8;
  transition: opacity .15s ease, transform .15s ease;
  color: var(--text);
}

.project-card:hover .project-arrow {
  opacity: .8;
  transform: translateX(2px);
}

.project-github svg,
.project-arrow svg {
  pointer-events: none;
}

.project-thumb {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 14px;
  background: var(--card-bg);
}

.project-thumb .thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease;
}

.project-item:hover .thumb-img {
  transform: scale(1.05);
}

.project-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .project-stats {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.project-stats .stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #888;
}

.like-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #888;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.like-btn:hover {
    color: #888;
}

.like-btn.active {
    color: #888;
}

.like-btn.active svg {
    fill: #f91880;
    stroke: #f91880;
}
/* ===== END PROJECTS ===== */

/* ===== DOWNLOAD CV ===== */
.about-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
  padding-top: .2rem;
}

.download-cv {
  display: inline-flex;
  align-items: center;
  gap: .40rem;
  font-size: .75rem;
  line-height: 1;
  padding: .38rem .65rem;
  border-radius: .40rem;
  border: 1px solid var(--line);
  background: var(--card, transparent);
  color: var(--text);
  text-decoration: none;
  transition: all var(--trans);
  margin-top: -18px;
}

html[data-theme="dark"] .download-cv:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

html[data-theme="light"] .download-cv:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.download-cv svg {
  display: block;
}
/* ===== END DOWNLOAD CV ===== */

/* ===== BUILD SECTION ===== */
.build-section {
  padding: 10px 0;
  margin-top: 80px;
}

.build-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--text);
}

.build-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.build-item {
  display: flex;
  align-items: center;
  gap: 10px;

  background: var(--card);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 8px;

  transition: 0.25s ease;
  cursor: default;
  opacity: .8;
}

.build-item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.build-item span {
  font-size: .85rem;
  font-weight: 400;
  color: var(--text);
}

.build-item:hover {
  border-color: var(--text);
}

.build-description {
  margin-top: 20px;
}

.build-description p {
  font-size: .85rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.5;
  opacity: .8;
}
/* ===== END BUILD SECTION ===== */

/* ===== MINIMAL CONTACT STYLE ===== */
.contact-section {
  margin-top: 80px;
  padding: 10px 0;
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-subtitle {
  font-size: .85rem;
  opacity: .8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon-min {
  width: 22px;
  height: 22px;
  display: flex;
  opacity: .8;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.contact-text {
  font-size: .85rem;
  color: var(--text);
  opacity: .8;
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* ===== END CONTACT SECTION ===== */

/* ===== BACK TO TOP ===== */
.back-to-top-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-decoration: none;
  background: var(--card);
  transition: all 0.3s ease;
  cursor: pointer;
}

.back-to-top:hover {
  border-color: var(--text);
}

.back-to-top svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: translateY(-1px);
}

.back-to-top.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
/* ===== END BACK TO TOP ===== */

/* ===== SKILLS SECTION ===== */
.skills-section {
  padding: 10px 0;
  margin-top: 80px;
}

.skills-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--text);
}

.skills-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skills-item {
  display: flex;
  align-items: center;
  gap: 10px;

  background: var(--card);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 8px;

  transition: 0.25s ease;
  cursor: default;
  opacity: .8;
}

.skills-item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.skills-item span {
  font-size: .85rem;
  font-weight: 400;
  color: var(--text);
}

.skills-item:hover {
  border-color: var(--text);
}

.skills-description {
  margin-top: 20px;
}

.skills-description p {
  font-size: .85rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.5;
  opacity: .8;
}
/* ===== END SKILLS SECTION ===== */

/* ===== TOOLS SECTION ===== */
.tools-section {
  padding: 10px 0;
  margin-top: 80px;
}

.tools-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--text);
}

.tools-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 10px;

  background: var(--card);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 8px;

  transition: 0.25s ease;
  cursor: default;
  opacity: .8;
}

.tool-item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.tool-item span {
  font-size: .85rem;
  font-weight: 400;
  color: var(--text);
}

.tool-item:hover {
  border-color: var(--text);
}

.tools-description {
  margin-top: 20px;
}

.tools-description p {
  font-size: .85rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.5;
  opacity: .8;
}
/* ===== END TOOLS SECTION ===== */

/* ===== FEEDBACK SECTION ===== */
.feedback-section {
  padding: 10px 0;
  margin-top: 80px;
}

.feedback-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.feedback-description {
  margin-bottom: 24px;
}

.feedback-description p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  opacity: 0.8;
}

.feedback-form {
  width: 100%; 
  max-width: 800px; 
  margin: 0; 
}

.feedback-section .container {
  max-width: 800px; 
  margin: 0 auto;   
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--text);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.submit-btn:hover {
  opacity: 0.9;
}

.submit-btn svg {
  stroke: var(--bg);
}

.status-message {
  margin-top: 12px;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  text-align: center;
  display: none;
}

.status-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
  display: block;
}

.status-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
  display: block;
}

.submit-btn.loading {
  position: relative;
  opacity: 0.8;
  cursor: not-allowed;
}

.submit-btn.loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid var(--bg);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.submit-btn.loading .btn-text,  
.submit-btn.loading svg {
  visibility: hidden;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* ===== END FEEDBACK SECTION ===== */

/* ===== BLOG ARTICLE PAGE ===== */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .85rem;
  opacity: .8;
  margin-bottom: 0.5rem;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-meta-item svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.blog-content {
  font-size: .85rem;
  line-height: 1.7;
  color: var(--text);
}

.blog-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--line);
}

.blog-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.blog-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.2rem 0 0.7rem;
  color: var(--text);
}

.blog-content p {
  margin-bottom: 1rem;
  opacity: .8;
}

.blog-content strong {
  color: var(--text);
  font-weight: 600;
}

.blog-content ul, 
.blog-content ol {
  padding-left: 2rem;
  margin-bottom: 1.2rem;
}

.blog-content li {
  margin-bottom: .5rem;
  opacity: .8;
}

.blog-content code {
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
  font-size: .85em;
  background: var(--code-bg, rgba(0,0,0,0.05));
  padding: 0.2em 0.4em;
  border-radius: 4px;
  color: var(--code-text, #e83e8c);
}

.code-block-wrapper {
  position: relative;
  margin: 1.2rem 0;
}

.blog-content pre {
  background: var(--pre-bg, #2C2C2C);
  color: var(--pre-text, #f8f8f2);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
  font-size: .85rem;
  line-height: 1.5;
  margin: 0;
}

.blog-content pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  opacity: 0;
  transition: all 0.2s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
  font-size: 0.75rem;
  color: #ccc;
}

.code-block-wrapper:hover .copy-btn {
  opacity: 1;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.copy-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.copy-btn.copied {
  background: rgba(46, 204, 113, 0.2);
  border-color: #2ecc71;
  color: #2ecc71;
}

.copy-btn.copied svg {
  stroke: #2ecc71;
}

.terminal {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.2rem 0;
  border: 1px solid var(--line);
}

.terminal-header {
  background: var(--card);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
  font-size: .85rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-body {
  padding: 1rem;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
  font-size: .85rem;
  line-height: 1.5;
  color: var(--text);
}

.terminal-body .comment {
  color: #6a9955;
  font-style: italic;
}

.terminal-body .prompt {
  color: #007acc;
}

.terminal-body .command {
  color: #d73a49;
}

/* Dark mode adjustments */
[data-theme="dark"] .terminal-body {
  color: #00ff9d;
}

[data-theme="dark"] .terminal-body .prompt {
  color: #569cd6;
}

[data-theme="dark"] .terminal-body .command {
  color: #dcdcaa;
}

.tip-box {
  background: var(--tip-bg, rgba(56, 189, 248, 0.1));
  border-left: 4px solid var(--tip-border, #38bdf8);
  padding: 1rem;
  border-radius: 4px;
  margin: 1.2rem 0;
  display: flex;
  gap: 0.8rem;
}

.tip-box svg {
  width: 20px;
  height: 20px;
  stroke: var(--tip-border, #38bdf8);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.tip-content h4 {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.tip-content p {
  font-size: .85rem;
  margin-bottom: 0;
  opacity: .8;
}

.breadcrumb {
  font-size: .9rem;
  opacity: .8;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.breadcrumb a {
  color: var(--text);
  text-decoration: none;
  opacity: .8;
  transition: .2s ease;
}

.breadcrumb a:hover {
  opacity: .8;
  color: var(--accent, var(--text));
}

.breadcrumb .current {
  opacity: .8;
  font-weight: 500;
}

.crumb-left {
  display: flex;
  gap: 6px;
  align-items: center;
}
/* ===== END BLOG ARTICLE PAGE ===== */

/* ===== BLOG INTERACTIONS SECTION ===== */
.blog-interactions {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--line);
}

/* ---------- Views & Likes Bar ---------- */
.interaction-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--line);
}

.interaction-stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted); 
  background: none;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  cursor: default;
  transition: var(--trans);
}

.interaction-stat-item.like {
  cursor: pointer;
}

.interaction-stat-item.like:hover {
  background: rgba(249, 24, 128, 0.05);
  color: var(--muted); 
}

.interaction-stat-item.like:hover svg {
  color: #f91880;
  stroke: #f91880;
}

.interaction-stat-item.like.active {
  background: rgba(249, 24, 128, 0.1);
  color: var(--muted); 
}

.interaction-stat-item.like.active svg {
  fill: #f91880;
  stroke: #f91880;
  color: #f91880;
}

.interaction-stat-item svg {
  width: 16px;
  height: 16px;
  transition: var(--trans);
}

/* ---------- Comments List ---------- */
.comments-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comments-count {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  background: var(--surface);
  padding: 0.1rem 0.5rem;
  border-radius: 12px;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.comment-item {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.comment-time {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.comment-message {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
  padding-left: 0.5rem;
  border-left: 2px solid var(--line);
  margin-left: 0.5rem;
}

/* ---------- Comment Form (Paling Bawah) ---------- */
.comment-form {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--line);
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--trans);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--text);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.submit-btn {
  background: var(--text);
  color: var(--bg);
  border: 3px solid var(--text);
  border-radius: var(--radius);
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  background: var(--bg);
  color: var(--text);
}

.submit-btn svg {
  width: 14px;
  height: 14px;
}

.no-comments {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  border: 3px dashed var(--line);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 640px) {
  .form-row {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .interaction-stats {
    gap: 0.5rem;
  }
  
  .interaction-stat-item {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
  
  .comment-item {
    padding: 1rem;
  }
}

/* Kotak utama daptar komentar */
.comments-list {
    max-height: 500px; 
    overflow-y: auto; 
    padding-right: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;    
    scrollbar-width: thin;
    scrollbar-color: #444 #222;
}

.comments-list::-webkit-scrollbar {
    width: 6px;
}
.comments-list::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}
.comments-list::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 10px;
}
.comments-list::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.comment-form {
    border-top: 2px solid var(--line);
    padding-top: 20px;
    margin-top: 20px;
}

/* Comment Actions - DIKECILKAN */
.comment-actions {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.comment-action-btn {
    background: none;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    transition: all 0.2s ease;
    height: 26px;
}

.comment-action-btn:hover {
    border-color: var(--text);
    color: var(--text);
}

.comment-action-btn.delete:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.comment-action-icon {
    width: 12px;
    height: 12px;
}

/* Edit Mode */
.edit-comment-container {
    margin-top: 8px;
}

.edit-comment-textarea {
    width: 100%;
    min-height: 70px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
    color: var(--text);
    font-family: inherit;
    font-size: 13px;
    resize: vertical;
    margin-bottom: 10px;
}

.edit-comment-textarea:focus {
    outline: none;
    border-color: var(--text);
}

.edit-buttons {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
}

.edit-btn-primary,
.edit-btn-secondary {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    height: 26px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.edit-btn-primary {
    background: var(--text);
    color: var(--bg);
}

.edit-btn-primary:hover {
    opacity: 0.9;
}

.edit-btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--line);
}

.edit-btn-secondary:hover {
    background: var(--card);
}

/* Delete Confirmation - DIKECILKAN */
.delete-confirmation {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding: 10px;
    background: var(--surface);
    border-radius: 6px;
    border: 1px solid var(--line);
}

.delete-confirm-text {
    font-size: 12px;
    color: var(--text);
    line-height: 1.4;
}

.delete-confirm-buttons {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
}

.delete-confirm-btn {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    min-width: 60px;
    text-align: center;
}

.delete-confirm-btn.confirm {
    background: #dc2626;
    color: white;
}

.delete-confirm-btn.confirm:hover {
    background: #b91c1c;
}

.delete-confirm-btn.cancel {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--line);
}

.delete-confirm-btn.cancel:hover {
    background: var(--card);
}

.article-navigation {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0;
  padding: 1rem 0;
  border-top: 2px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text);
  padding: 1rem;
  border-radius: var(--radius);
  transition: all var(--trans);
  flex: 1;
  max-width: 45%;
}

.nav-link:hover {
  background: var(--surface);
  transform: translateY(-2px);
}

.nav-link.prev {
  text-align: left;
  justify-content: flex-start;
}

.nav-link.next {
  text-align: right;
  justify-content: flex-end;
}

.nav-content {
  display: flex;
  flex-direction: column;
}

.nav-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.nav-title {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
  .article-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-link {
    max-width: 100%;
  }
}
/* ===== END BLOG INTERACTIONS ===== */

/* Tambahkan ini di CSS kamu atau inline */
[data-theme="dark"] .github-logo,
[data-theme="dark"] .vercel-logo {
  filter: invert(1) brightness(2);
}
  
  