* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f0f;
    color: #fff;
    overflow-x: hidden;
  }
  
  .bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -2;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: -1;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .navbar .logo {
    font-size: 1.8em;
    color: #00e5ff;
  }
  
  .navbar ul {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  
  .navbar a {
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
  }
  
  .navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #00e5ff;
    transition: width 0.3s;
  }
  
  .navbar a:hover::after {
    width: 100%;
  }
  
  .hero-content {
    text-align: center;
    margin-top: 25vh;
    padding: 0 20px;
  }
  
  .hero-content h2 {
    font-size: 3em;
    margin-bottom: 10px;
    animation: fadeInUp 1.2s ease;
  }
  
  .hero-content h3 {
    font-size: 1.5em;
    color: #bbb;
    animation: fadeInUp 1.5s ease;
  }
  
  .highlight {
    color: #00e5ff;
  }
  
  .section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 40px;
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,229,255,0.3);
    animation: fadeIn 1s ease forwards;
  }
  
  .profile-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }
  
  .profile-pic img {
    width: 150px;
    border-radius: 50%;
    border: 3px solid #00e5ff;
  }
  
  .hobby-list {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .hover-scale {
    padding: 10px 20px;
    background: #222;
    border-radius: 8px;
    transition: transform 0.3s, background 0.3s;
    cursor: pointer;
  }
  
  .hover-scale:hover {
    transform: scale(1.1);
    background: #00e5ff;
    color: #000;
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  .skill-card {
    background: #222;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: box-shadow 0.3s;
  }
  
  .skill-card:hover {
    box-shadow: 0 0 15px #00e5ff;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
  }
  
  .gallery-grid img {
    width: 100%;
    border-radius: 10px;
  }
  
  .testimoni-card {
    background: #222;
    margin: 20px 0;
    padding: 20px;
    border-left: 5px solid #00e5ff;
    border-radius: 8px;
  }
  
  .timeline li {
    margin-bottom: 10px;
  }
  
  .faq-item {
    margin: 15px 0;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #777;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.98);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  body {
    background: radial-gradient(circle at center, #0f0f0f 20%, #000000 100%);
    position: relative;
    overflow-x: hidden;
  }
  
  /* Parallax effect */
  .section {
    transition: transform 0.5s ease;
  }
  
  /* Partikel background */
  #particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -3;
  }
  
  /* Hover interaksi lebih smooth */
  .hover-scale:hover {
    transform: scale(1.1) translateY(-3px);
    background: #00e5ff;
    color: #000;
    box-shadow: 0 0 15px #00e5ff;
  }
  
  /* Card glowing lebih halus */
  .skill-card:hover {
    box-shadow: 0 0 20px #00e5ff;
    transform: translateY(-5px);
    transition: 0.4s;
  }
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 100;
    animation: slideDown 0.7s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .navbar ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }
  
  .navbar ul li {
    position: relative;
  }
  
  .navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 5px;
    transition: color 0.3s ease;
  }
  
  .navbar ul li a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 120%;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #00ff88);
    border-radius: 2px;
    transition: transform 0.4s ease;
  }
  
  .navbar ul li a:hover::before {
    transform: translateX(-50%) scaleX(1);
  }
  
  .navbar ul li a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
  }
  
  .logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: transform 0.4s ease, text-shadow 0.4s ease;
  }
  
  .logo:hover {
    transform: scale(1.1);
    text-shadow: 0 0 15px #00ffff;
  }
  .navbar ul li a.active {
    color: #00ffff;
    font-weight: 700;
    text-shadow: 0 0 10px #00ffff;
  }
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }
  
  .navbar.scrolled {
    background: rgba(20, 20, 20, 0.8);
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.3);
  }
  
  .navbar ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }
  
  .navbar ul li {
    position: relative;
  }
  
  .navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 5px;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }
  
  .navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 120%;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #00ff88);
    border-radius: 50px;
    transition: transform 0.4s ease;
  }
  
  .navbar ul li a:hover::after {
    transform: translateX(-50%) scaleX(1);
  }
  
  .navbar ul li a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
  }
  
  .logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: transform 0.4s ease, text-shadow 0.4s ease;
  }
  
  .logo:hover {
    transform: scale(1.1);
    text-shadow: 0 0 15px #00ffff;
    animation: pulse 1.2s infinite;
  }
  
  @keyframes pulse {
    0%, 100% {
      text-shadow: 0 0 15px #00ffff;
    }
    50% {
      text-shadow: 0 0 25px #00ffff;
    }
  }
  .hobi-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  
  .hobi-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 150px;
    height: 150px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
  }
  
  .hobi-card .emoji {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .hobi-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  }
  .section-title {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px #00ffff;
  }
  
  .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .faq-item h4 {
    color: #00ffff;
    margin-bottom: 0.5rem;
  }
  
  .faq-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  }
  