.avatar-box img{
        background-color: #7C7B7B;
        border-radius: 30px;
    }

  .experience ul li::before, .education ul li::before {
            content: '•'; /* Menambahkan titik */
            color: inherit; /* This will inherit from parent text color */
            font-size: 20px; /* Ukuran titik */
            margin-right: 10px; /* Jarak antara titik dan teks */
        }

.light-mode .experience ul li::before,
.light-mode .education ul li::before {
  color: var(--white-1); /* Use the dark text color in light mode */
}

  

/* === Moved from index.html inline <style> === */

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

main {
  position: relative;
  z-index: 1;
}

.audio-control {
  background: none;
  border: none;
  color: var(--light-gray);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.audio-control:hover {
  background: var(--orange);
  color: white;
}

.audio-control ion-icon {
  font-size: 1.2em;
}

/* Skills Section Styles */
.skills.active .wrap-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.wrap-image img {
  width: 40px;
  height: max-content;
  -webkit-filter: grayscale(100%);
}

.image-wraper {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 130px;
  cursor: pointer;
}
.image-wraper .text-image {
  color: white;
  max-width: 85px;
  font-size: 14px;
}

.wrap-image .image-wraper:hover img {
  -webkit-filter: unset;
}
.wrap-image .image-wraper:hover .text-image {
  color: hsl(35, 100%, 68%);
}

.resume-btn {
  margin-bottom: 10px;
}

/* Article Section Styles */
.articles-wrapper {
  position: relative;
  overflow-x: auto;
  padding: 20px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.articles-wrapper::-webkit-scrollbar {
  display: none;
}
.articles-slider {
  display: flex;
  gap: 20px;
  padding: 10px 5px;
  flex-direction: column;
}
.article-card {
  flex: 0 0 300px;
  background: var(--modal-bg);
  border: 1px solid var(--border-primary);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.article-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.article-content {
  padding: 15px;
}
.article-title {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: var(--light-gray);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-footer {
  color: var(--light-gray);
}
.article-description {
  font-size: 0.9em;
  color: var(--text-primary);
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-link {
  display: inline-block;
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  margin-top: auto;
}
.article-link:hover {
  text-decoration: underline;
}
.article-date {
  font-size: 0.8em;
  color: var(--text-light);
  margin-top: 10px;
}
@media (max-width: 580px) {
  .article-card {
    flex: 0 0 360px;
  }
}
/* Items per page styles */
.items-per-page {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: flex-end;
  padding-right: 20px;
  color: var(--light-gray);
}

.items-per-page label {
  font-size: 0.95em;
}

.items-per-page span {
  font-size: 0.95em;
}

.items-per-page-select {
  padding: 8px 12px;
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  background: var(--eerie-black-2);
  color: var(--orange-yellow-crayola);
  cursor: pointer;
  font-size: 0.95em;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFB456' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  padding-right: 32px;
}

.items-per-page-select:hover {
  border-color: var(--orange-yellow-crayola);
  box-shadow: 0 0 0 2px rgba(255, 180, 86, 0.1);
}

.items-per-page-select:focus {
  outline: none;
  border-color: var(--orange-yellow-crayola);
  box-shadow: 0 0 0 2px rgba(255, 180, 86, 0.2);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}
.pagination-btn {
  background: var(--modal-bg);
  border: 1px solid var(--border-primary);
  color: var(--light-gray);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination-btn:not(:disabled):hover {
  background: var(--orange);
  color: white;
}
.pagination-numbers {
  display: flex;
  gap: 5px;
}
.page-number {
  background: var(--modal-bg);
  border: 1px solid var(--border-primary);
  color: var(--light-gray);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page-number.active {
  background: var(--orange);
  color: white;
}
.page-number:hover:not(.active) {
  background: var(--border-primary);
}

/* Modern & Thematic Digital Product Card Styling */
.digital-products-wrapper{
  display: flex;
  justify-content: space-between;
}
.digital-product-card {
  max-width: 48%;
  background: var(--border-gradient-onyx);
  border-radius: 18px;
  box-shadow: var(--shadow-2);
  overflow: hidden;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
  padding: 24px 20px 28px 20px;
  position: relative;
  border: none;
}
.digital-product-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: 0;
  filter: blur(0.5px);
}
.digital-product-card:hover {
  box-shadow: var(--shadow-4);
  transform: translateY(-6px) scale(1.03);
  border: 1.5px solid var(--orange-yellow-crayola);
}
.digital-product-image {
  width: 300px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--white-2);
  border: 2px solid var(--orange-yellow-crayola);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  z-index: 1;
}
.digital-product-content {
  text-align: center;
  z-index: 1;
}
.digital-product-title {
  font-size: 1.18em;
  font-weight: 600;
  color: var(--orange-yellow-crayola);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  background: var(--text-gradient-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.digital-product-desc {
  font-size: 1em;
  color: var(--light-gray);
  margin-bottom: 18px;
  min-height: 44px;
  font-weight: 400;
}
.digital-product-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  z-index: 1;
}
.digital-product-btn {
  background: var(--orange-yellow-crayola);
  color: var(--eerie-black-1);
  border: none;
  padding: 8px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  font-size: 1em;
  box-shadow: 0 2px 8px rgba(255,219,110,0.08);
  position: relative;
  z-index: 1;
}
.digital-product-btn:hover {
  background: var(--bg-gradient-yellow-1);
  color: var(--eerie-black-1);
  box-shadow: 0 4px 16px rgba(255,219,110,0.18);
}
.digital-product-btn.buy {
  background: var(--orange-yellow-crayola);
  color: var(--eerie-black-1);
}
.digital-product-btn.buy:hover {
  background: var(--bg-gradient-yellow-1);
  color: var(--eerie-black-1);
}

@media (max-width: 600px) {
  .items-per-page {
    justify-content: center;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .items-per-page label,
  .items-per-page span {
    font-size: 0.9em;
  }

  .items-per-page-select {
    padding: 6px 28px 6px 10px;
    font-size: 0.9em;
    background-size: 14px;
  }

  .digital-product-card {
    padding: 14px 6px 18px 6px;
  }
  .digital-product-image {
    width: 70px;
    height: 70px;
  }
}

@media (max-width:720px) {
  .avatar-box img{
      background-color: #7C7B7B;
      border-radius: 20px;
      }
      .digital-product-card {
        max-width: 100%;
        
      }
}