 /* Hide scrollbar for Chrome, Safari and Opera */
 .scroll-container::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  .scroll-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

  /* Cursor for dragging */
  .scroll-container {
    cursor: grab;
  }
  .scroll-container:active {
    cursor: grabbing;
  }

   /* Hero Section Styling */
 .hero-section {
   background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
   min-height: 80vh;
   display: flex;
   align-items: center;
   position: relative;
   overflow: hidden;
 }

 .hero-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
               radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
   pointer-events: none;
 }

  .hero-title {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .tech-box {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  .tech-box:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .tech-icon {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .tech-icon:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
  }

  .primary-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    transition: all 0.3s ease;
  }

  .primary-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  }

  .secondary-button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
  }

  .secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 1);
  }

  /* filter */
  .custom-dropdown {
    position: relative;
    width: 100%;
    z-index: 10;
}

.custom-select-button {
    appearance: none;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    color: #070707;
    cursor: pointer;
    z-index: 20;
}

.dark .custom-select-button {
    background-color: #1a1a1a;
    border-color: #444;
    color: #ccc;
}

.custom-select-button:focus {
    outline: none;
    border-color: #000;
}

#dropdownList {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-color: white;
    border-top: 1px solid #ccc;
    border-radius: 8px 8px 0 0;
    z-index: 50;
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
}

.dark #dropdownList {
    background-color: #1a1a1a;
    border-color: #444;
}

#dropdownList.show {
    display: block;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.dark .dropdown-item:hover {
    background-color: #141414;
}

#closeButton {
    background-color: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
}

@keyframes slideIn {
  from {
      transform: translateY(100%);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes slideOut {
  from {
      transform: translateY(0);
      opacity: 1;
  }
  to {
      transform: translateY(100%);
      opacity: 0;
  }
}

#dropdownList {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-color: white;
  border-top: 1px solid #ccc;
  border-radius: 8px 8px 0 0;
  z-index: 50;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(100%);
}

#dropdownList.show {
  display: block;
  animation: slideIn 0.3s forwards;
}

#dropdownList.hide {
  animation: slideOut 0.3s forwards;
}
/* Existing styles... */

.dropdown-item.active {
  background-color: #e0e0e0; /* Light gray background for the active item */
  color: #000; /* Dark text color for better visibility */
}

/* Dark mode styles */
.dark .dropdown-item.active {
  background-color: #333; /* Dark background for active item in dark mode */
  color: #fff; /* Light text color for better visibility */
}

  
  filter

/* Styling untuk artikel konten */
.artikel {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    font-size: 1.1rem;
}

.artikel h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 2rem 0 1.5rem;
    color: #1a1a1a;
}

.artikel h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.artikel h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #1a1a1a;
}

.artikel p {
    margin: 1.2rem 0;
    color: #333;
}

.artikel ul, .artikel ol {
    margin: 1.2rem 0;
    padding-left: 2rem;
}

.artikel li {
    margin: 0.5rem 0;
    color: #333;
}

.artikel img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.artikel blockquote {
    border-left: 4px solid #3b82f6;
    padding: 1rem 2rem;
    margin: 1.5rem 0;
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
}

.artikel a {
    color: #3b82f6;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.artikel a:hover {
    border-bottom-color: #3b82f6;
}

/* Dark mode untuk artikel */
.dark .artikel h1,
.dark .artikel h2,
.dark .artikel h3 {
    color: #e5e7eb;
}

.dark .artikel p,
.dark .artikel li {
    color: #d1d5db;
}

.dark .artikel blockquote {
    background: #1f2937;
    border-left-color: #3b82f6;
}

/* Styling untuk kode blok dengan highlight.js */
.artikel pre {
    background: #0d1117;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    overflow-x: auto;
    border: 1px solid #30363d;
    position: relative;
}

.artikel pre code {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    color: #c9d1d9;
}

.artikel .hljs {
    background: transparent !important;
    color: #c9d1d9 !important;
}

/* Styling untuk scrollbar pada kode blok */
.artikel pre::-webkit-scrollbar {
    height: 8px;
}

.artikel pre::-webkit-scrollbar-track {
    background: #0d1117;
    border-radius: 4px;
}

.artikel pre::-webkit-scrollbar-thumb {
    background: #30363d;
    border-radius: 4px;
}

.artikel pre::-webkit-scrollbar-thumb:hover {
    background: #484f58;
}

/* Dark mode support */
.dark .artikel pre {
    background: #0d1117;
    border-color: #30363d;
}

.dark .artikel .hljs {
    color: #c9d1d9 !important;
}

/* Light mode support */
.light .artikel pre {
    background: #f6f8fa;
    border-color: #d0d7de;
}

.light .artikel .hljs {
    color: #24292f !important;
}

/* Copy button untuk kode blok */
.artikel pre {
    position: relative;
}

.artikel pre::before {
    content: attr(data-language);
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 12px;
    font-weight: 500;
    color: #8b949e;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Hover effect untuk kode blok */
.artikel pre:hover {
    border-color: #58a6ff;
    transition: border-color 0.2s ease;
}

/* Responsive design untuk kode blok */
@media (max-width: 768px) {
    .artikel pre {
        font-size: 12px;
        padding: 12px;
    }
    
    .artikel pre code {
        font-size: 12px;
    }
}

/* Syntax highlighting colors untuk berbagai bahasa */
.artikel .hljs-keyword {
    color: #ff7b72 !important;
}

.artikel .hljs-string {
    color: #a5d6ff !important;
}

.artikel .hljs-comment {
    color: #8b949e !important;
    font-style: italic;
}

.artikel .hljs-function {
    color: #d2a8ff !important;
}

.artikel .hljs-number {
    color: #79c0ff !important;
}

.artikel .hljs-variable {
    color: #ffa198 !important;
}

.artikel .hljs-operator {
    color: #ff7b72 !important;
}

.artikel .hljs-punctuation {
    color: #c9d1d9 !important;
}

.artikel .hljs-class {
    color: #ffa657 !important;
}

.artikel .hljs-property {
    color: #79c0ff !important;
}

.artikel .hljs-attr {
    color: #79c0ff !important;
}

.artikel .hljs-tag {
    color: #7ee787 !important;
}

.artikel .hljs-built_in {
    color: #ffa657 !important;
}

.artikel .hljs-literal {
    color: #79c0ff !important;
}

.artikel .hljs-title {
    color: #d2a8ff !important;
}

.artikel .hljs-params {
    color: #c9d1d9 !important;
}

.artikel .hljs-regexp {
    color: #d2a8ff !important;
}

.artikel .hljs-symbol {
    color: #d2a8ff !important;
}

.artikel .hljs-meta {
    color: #8b949e !important;
}

.artikel .hljs-deletion {
    color: #ff7b72 !important;
}

.artikel .hljs-addition {
    color: #7ee787 !important;
}

.artikel .hljs-emphasis {
    font-style: italic;
}

.artikel .hljs-strong {
    font-weight: bold;
}