body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #000000 0%, #111111 100%);
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}
header {
  text-align: center;
  padding: 40px 20px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(255, 107, 157, 0.2);
  margin-bottom: 40px;
  animation: fadeInUp 1s ease;
  position: relative;
  border: 1px solid rgba(255, 107, 157, 0.4);
}

.music-control {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF6B9D;
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
  color: white;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.6);
  transition: all 0.3s ease;
}
.music-control:hover {
  background: #e25585;
  transform: scale(1.05);
}
nav {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 157, 0.5);
}
.menu-button {
    background: #FF6B9D;
    border: none;
    padding: 12px 25px;
    border-radius: 15px;
    cursor: pointer;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.6);
    transition: all 0.3s ease;
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
}
.menu-button:hover {
    background: #FFD4CA;
    color: #000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 212, 202, 0.8);
}
.menu-button.active {
    background: #FFD4CA;
    color: #000;
    cursor: default;
}
.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.8);
  animation: glowPulse 3s infinite ease-in-out;
}
.profile-pic:hover {
  animation: glitch 0.5s infinite alternate;
  transform: scale(1.1);
}
@keyframes glitch {
  0% { transform: translate(1px, 1px) scale(1.1); }
  25% { transform: translate(-1px, -1px) scale(1.1); }
  50% { transform: translate(1px, -1px) scale(1.1); }
  75% { transform: translate(-1px, 1px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1.1); }
}
@keyframes glowPulse {
  0% { box-shadow: 0 0 20px rgba(255, 107, 157, 0.6), 0 0 40px rgba(255, 107, 157, 0.4); }
  50% { box-shadow: 0 0 40px rgba(255, 107, 157, 1), 0 0 80px rgba(255, 107, 157, 0.8); }
  100% { box-shadow: 0 0 20px rgba(255, 107, 157, 0.6), 0 0 40px rgba(255, 107, 157, 0.4); }
}

h1 {
  margin: 0;
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #FF6B9D, #FFD4CA, #FF6B9D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: neonText 4s linear infinite;
  text-shadow: 0 0 10px rgba(255, 107, 157, 0.8);
  overflow: hidden;
  border-right: .15em solid #FFD4CA;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: .15em;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #FFD4CA; }
}
@keyframes neonText {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.status {
  font-size: 1.1rem;
  color: #FFD4CA;
  margin: 10px 0 0;
  font-style: italic;
  animation: fadeIn 2s ease;
}
.bio {
  font-size: 1.2rem;
  margin-bottom: 20px;
  animation: fadeIn 2s ease;
}

section {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 0 40px rgba(255, 107, 157, 0.3);
  animation: fadeInUp 2.5s ease;
  border: 1px solid rgba(255, 212, 202, 0.3);
}
h2 {
  color: #FF6B9D;
  border-bottom: 3px solid #FFD4CA;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 212, 202, 0.8);
}
a {
  text-decoration: none;
  color: #FFD4CA;
  transition: color 0.3s;
}
a:hover {
  color: #FF6B9D;
  text-shadow: 0 0 10px #FF6B9D;
}
.project-gallery {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255, 107, 157, 0.5);
    position: relative;
}
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.project-card {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #FF6B9D;
    border-radius: 15px;
    text-align: left;
}
.project-card h3 {
    color: #FFD4CA;
    font-size: 1.8rem;
    margin-top: 0;
    border-bottom: 1px dashed rgba(255, 212, 202, 0.5);
    padding-bottom: 10px;
}
.project-card p {
    margin-bottom: 15px;
    font-size: 1rem;
}
.project-card .tags {
    margin-top: 10px;
}
.project-card .tags span {
    display: inline-block;
    background: #e25585;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-right: 5px;
}
.slider-nav {
    text-align: center;
    margin-top: 15px;
}
.slider-dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}
.slider-dot.active {
    background-color: #FF6B9D;
    transform: scale(1.3);
    box-shadow: 0 0 10px #FF6B9D;
}

.skills-mapping {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.skill-box {
    background: rgba(255, 107, 157, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid #FF6B9D;
    box-shadow: 0 0 15px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px;
    flex-grow: 1;
    max-width: 30%;
}
.skill-box:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 107, 157, 0.2);
    box-shadow: 0 0 25px #FF6B9D;
}
.skill-box i {
    font-size: 2rem;
    color: #FFD4CA;
    margin-bottom: 5px;
}
.skill-box p {
    margin: 0;
    font-weight: bold;
}
.qris-container {
    text-align: center;
    padding: 20px;
    border: 2px dashed #FF6B9D;
    border-radius: 15px;
    background: rgba(255, 107, 157, 0.05);
    margin-top: 20px;
}
.qris-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 212, 202, 0.5);
    margin-bottom: 15px;
    border: 5px solid #fff;
}
.qris-info {
    font-size: 0.9rem;
    color: #FFD4CA;
    margin-bottom: 15px;
}
.qris-contact-info {
    max-width: 300px;
    margin: 15px auto 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.contact-button-trigger {
    background: rgba(255, 107, 157, 0.3);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #FF6B9D;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact-button-trigger:hover {
    background: rgba(255, 107, 157, 0.5);
    box-shadow: 0 0 20px #FF6B9D;
    transform: scale(1.03);
}
.contact-button-trigger i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #FFD4CA;
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8); 
    backdrop-filter: blur(5px);
}
.modal-content {
    background-color: rgba(255, 255, 255, 0.1);
    margin: 15% auto; 
    padding: 30px;
    border: 2px solid #FF6B9D;
    width: 80%; 
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(255, 107, 157, 0.7);
    animation: modalopen 0.4s;
    text-align: center;
}
.close-btn {
    color: #FFD4CA;
    float: right;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s;
}
.close-btn:hover,
.close-btn:focus {
    color: #FF6B9D;
    text-decoration: none;
    cursor: pointer;
}
.modal-content h3 {
    color: #FFD4CA;
    border-bottom: 1px solid #FF6B9D;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.modal-content a {
    display: block;
    padding: 10px;
    margin-bottom: 10px;
    background: #FF6B9D;
    border-radius: 8px;
    color: #000;
    font-weight: bold;
    transition: background 0.3s;
}
.modal-content a:hover {
    background: #FFD4CA;
    color: #000;
}

@keyframes modalopen {
  from {opacity: 0; transform: scale(0.8);}
  to {opacity: 1; transform: scale(1);}
}
#chatbot-container {
    height: 400px;
    display: flex;
    flex-direction: column;
    border: 2px solid #FF6B9D;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.5);
    background: rgba(0, 0, 0, 0.7);
}
#chat-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    border-bottom: 1px solid rgba(255, 107, 157, 0.4);
}
.message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 80%;
    word-wrap: break-word;
    font-size: 0.95rem;
    animation: fadeIn 0.5s ease-out;
}
.user-message {
    background: #FFD4CA;
    color: #000;
    margin-left: auto;
    border-bottom-right-radius: 0;
}
.ai-message {
    background: #FF6B9D;
    color: #fff;
    margin-right: auto;
    border-bottom-left-radius: 0;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.input-area {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    box-sizing: border-box;
}
#user-input {
    flex: 1;
    min-width: 0;            /* 🔥 WAJIB */
    padding: 12px;
    border: none;
    background: rgba(0, 0, 0, 0.8);
    color: #FFD4CA;
    outline: none;
    font-size: 0.95rem;
}
#user-input:focus {
    box-shadow: 0 0 10px #FFD4CA;
}
#send-button {
    width: 72px;          /* lebih kecil & aman */
    flex-shrink: 0;       /* 🔥 anti kepotong */
    background: #FF6B9D;
    color: #000;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-weight: bold;
}
#send-button:hover:not(:disabled) {
    background: #FFD4CA;
    color: #000;
}
#send-button:disabled {
    background: #555;
    cursor: not-allowed;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.shooting-star {
  position: fixed;
  top: -10px;
  width: 2px;
  height: 60px;
  background: linear-gradient(white, transparent);
  opacity: 0.8;
  transform: rotate(45deg);
  animation: shooting 2s linear forwards;
  z-index: 0;
  pointer-events: none;
}
@keyframes shooting {
  from {
    transform: translateX(0) translateY(0) rotate(45deg);
    opacity: 1;
  }
  to {
    transform: translateX(600px) translateY(600px) rotate(45deg);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  .container { padding: 10px; }
  header { padding: 20px; }
  .profile-pic { width: 120px; height: 120px; }
  .menu-button { padding: 10px 15px; margin: 5px; }
  .modal-content { width: 90%; margin: 50% auto;}
  #send-button { width: 80px; }


.skills-carousel {
  overflow: hidden;
  width: 100%;
}

.skills-track {
  display: flex;
  width: max-content;
  animation: scrollSkills 18s linear infinite;
}

.skill-box {
  min-width: 160px;   /* ukuran normal */
  padding: 15px 10px;
  text-align: center;
  border-radius: 12px;
  margin-right: 16px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

@keyframes scrollSkills {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
}

/* ===============================
   COLOR OVERRIDE ONLY (SAFE)
   TIDAK UBAH SIZE / POSITION
================================ */

:root {
--neon-gradient: linear-gradient(
  135deg,
  #3b82f6,
  #8b5cf6
);
/* animasi ganti warna pelan */
@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ===== GANTI SEMUA PINK JADI GRADIENT ===== */
header,
section,
.project-card,
.skill-box,
.contact-button-trigger,
.modal-content,
#chatbot-container,
.qris-container {
  background-image:
    linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)),
    var(--neon-gradient);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
  background-size: 200% 200%;
  animation: colorShift 12s ease infinite;
}
/* ===== BUTTON ===== */
.menu-button,
.music-control,
#send-button,
.modal-content a {
  background: var(--neon-gradient);
  background-size: 200% 200%;
  color: #000;
  animation: colorShift 8s ease infinite;
}

/* ===== TEXT / TITLE ===== */
h1,
h2 {
  background: linear-gradient(
    90deg,
    #60a5fa,
    #a78bfa,
    #f472b6
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: neonText 6s linear infinite;
}

/* ===== CHAT ===== */
.ai-message {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  color: #000;
}
/* ===== GLOW IKUT WARNA ===== */
.profile-pic,
.slider-dot.active,
.skill-box:hover,
.contact-button-trigger:hover {
  animation: glowPulse 3s infinite ease-in-out, colorShift 8s linear infinite;
}

#zeno-chat-wrapper {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 340px;
  height: 460px;
  background: #0b0b0b;
  border-radius: 16px;
  display: none;
  z-index: 9999;
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
}

#zeno-chat-wrapper #ai-chat-section {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#zeno-chat-wrapper #chatbot-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* === ZENO AI FLOATING BUTTON === */
#zeno-fab {
  position: fixed;        /* bikin ngikut scroll */
  right: 20px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}

#zeno-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(0,0,0,.6);
}

/* === FIX CHAT MOBILE ZENO === */
#zeno-chat-wrapper {
  display: flex;
  flex-direction: column;
}

#zeno-chat-wrapper #ai-chat-section {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#zeno-chat-wrapper #chatbot-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 480px) {
  #zeno-chat-wrapper {
    width: 92vw;
    right: 4vw;
  }

  #send-button {
    width: 64px;
    font-size: 13px;
  }

  #user-input {
    font-size: 13px;
    padding: 10px;
  }
}


  /* === FLOAT BUTTON === */
#music-fab {
  position: fixed;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle,#00ffe0,#0066ff);
  box-shadow: 0 0 25px #00ffe0;
  z-index: 999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

  

/* disc */
#music-fab .disc {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: url("https://files.catbox.moe/5qq2bm.jpg") center/cover;
}

/* spin saat play */
#music-fab.playing .disc {
  animation: spin 3s linear infinite;
}


  
@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

/* === PANEL === */
#music-panel {
  position: fixed;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  background: rgba(0,0,0,.9);
  border: 1px solid #00ffe0;
  border-radius: 16px;
  box-shadow: 0 0 30px #00ffe0;
  padding: 12px;
  display: none;
  z-index: 998;
}

/* header */
.music-header {
  display: flex;
  justify-content: space-between;
  color: #00ffe0;
}

/* now playing */
.music-now {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  color: white;
}
.music-now img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

/* list */
.music-list div {
  padding: 6px;
  cursor: pointer;
  color: #ccc;
}
.music-list div:hover {
  background: rgba(0,255,255,.1);
  color: #00ffe0;
}

/* controls */
.music-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}
.music-controls button {
  background: none;
  border: none;
  color: #00ffe0;
  font-size: 20px;
}

.playlist-header {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #7ffcff;

  text-shadow:
    0 0 6px rgba(127, 252, 255, 0.6),
    0 0 14px rgba(127, 252, 255, 0.4);

  margin-bottom: 10px;
}

@keyframes softGlow {
  0% { opacity: .85; }
  50% { opacity: 1; }
  100% { opacity: .85; }
}

.playlist-header {
  animation: softGlow 3s ease-in-out infinite;
}

.playlist-close {
  position: absolute;
  top: 12px;
  right: 12px;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);

  color: #eaffff;
  font-size: 18px;
  font-weight: 500;

  cursor: pointer;

  transition: 
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.playlist-panel {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.playlist-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}


  #music-fab {
  position: fixed;
  left: 14px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 
    transform .25s ease,
    box-shadow .25s ease,
    background .3s ease;
}

#music-fab:active,
#zeno-fab:active {
  transform: scale(.94);
  box-shadow:
    0 0 10px rgba(255,255,255,.9),
    0 0 25px rgba(0,255,255,1);
}
  
#music-list {
  margin-top: 10px;
}

.playlist-item {
  position: relative;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.playlist-item span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(220, 230, 240, 0.75);
  letter-spacing: .2px;
}

/* hover */
.playlist-item:hover {
  background: rgba(80, 200, 255, 0.08);
}

/* lagu aktif */
.playlist-item.active {
  background: linear-gradient(
    90deg,
    rgba(80, 200, 255, 0.25),
    rgba(160, 120, 255, 0.25)
  );
  box-shadow: 0 0 12px rgba(120, 200, 255, 0.35);
}

.playlist-item.active span {
  color: #e9faff;
  font-weight: 600;
}

/* border neon */
.playlist-item::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    #7c7cff,
    #00e5ff
  );
  opacity: 0;
  filter: blur(6px);
  z-index: 0;
  animation: neonPulse 3s ease-in-out infinite;
}

.playlist-item span {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 500;
  color: rgba(220, 230, 240, 0.75);
  letter-spacing: .2px;
}

/* hover */
.playlist-item:hover {
  background: rgba(80, 200, 255, 0.08);
}

/* lagu aktif */
.playlist-item.active {
  background: linear-gradient(
    90deg,
    rgba(80, 200, 255, 0.25),
    rgba(160, 120, 255, 0.25)
  );
  box-shadow: 0 0 12px rgba(120, 200, 255, 0.35);
}

.playlist-item.active span {
  color: #e9faff;
  font-weight: 600;
}
/* aktif */
.playlist-item.active::before {
  opacity: 1;
}
@keyframes neonPulse {
  0% {
    filter: blur(6px);
    background: linear-gradient(90deg, #7c7cff, #00e5ff);
  }
  50% {
    filter: blur(10px);
    background: linear-gradient(90deg, #00e5ff, #a855f7);
  }
  100% {
    filter: blur(6px);
    background: linear-gradient(90deg, #7c7cff, #00e5ff);
  }
}

#music-title {
  font-size: 15px;
  font-weight: 600;
  color: #e8faff; /* putih kebiruan */
  line-height: 1.2;
}

#music-artist {
  font-size: 11px;               /* lebih kecil */
  font-weight: 400;
  color: rgba(200, 200, 200, .65); /* abu-abu soft */
  margin-top: 2px;
  letter-spacing: .3px;
}
* {
  -webkit-tap-highlight-color: transparent;
}
header:active,
section:active,
.project-card:active,
.skill-box:active,
.contact-button-trigger:active,
.modal-content:active,
#chatbot-container:active {
  background-image:
    linear-gradient(rgba(0,0,0,0.88), rgba(0,0,0,0.88)) !important;
  border-color: #8b5cf6 !important; /* UNGU */
  box-shadow:
    0 0 12px rgba(139, 92, 246, 0.6),
    0 0 28px rgba(139, 92, 246, 0.4) !important;
}

.menu-button:active,
.music-control:active,
#send-button:active,
.modal-content a:active {
  background: #0b0b0b !important;
  color: #fff !important;
  border: 1px solid #8b5cf6 !important;
  box-shadow:
    0 0 10px rgba(139, 92, 246, 0.7),
    0 0 22px rgba(139, 92, 246, 0.4) !important;
  transform: scale(0.97);
}

button:focus,
a:focus {
  outline: none;
  box-shadow: none;
}


header:active,
section:active,
.project-card:active,
.skill-box:active,
.contact-button-trigger:active,
.modal-content:active,
#chatbot-container:active {
  --neon-gradient: linear-gradient(
    135deg,
    #3b82f6,
    #8b5cf6
  ) !important;
}



/* ===== contac ===== */  
.contact{  
  display:flex;  
  flex-direction:column;  
  gap:16px;  
}  
.btn{  
  padding:14px;  
  border-radius:14px;  
  display:flex;  
  justify-content:center;  
  align-items:center;  
  font-weight:600;  
  color:#fff;  
  text-decoration:none;  
  transition:.3s;  
}  
.btn:hover{transform:scale(1.05)}  
.tele{background:linear-gradient(135deg,#4466ff,#2c3fff);box-shadow:0 0 22px #4466ffaa}  
.nowa{background:linear-gradient(135deg,#1ddf7c,#0ea960);box-shadow:0 0 22px #25d366aa}  
.wa{background:linear-gradient(135deg,#1ddf7c,#0ea960);box-shadow:0 0 22px #25d366aa}  
.yt{background:linear-gradient(135deg,#ff3b3b,#c70000);box-shadow:0 0 22px #ff0000aa}


.site-footer {
  width: 100%;
  text-align: center;
  font-size: 11px;          /* kecil */
  margin: 25px 0 15px;
  padding-top: 10px;
  color: rgba(255,255,255,0.7); /* putih soft */
}
