/* ============================================
   base.css — Shared Base Styles (UPDATED)
   DevWhiz Premium Marketplace
   ============================================ */

/* ===== ROOT VARIABLES ===== */
:root {
  --bg-primary: #030307;
  --bg-secondary: #070710;
  --bg-card: #0b0b18;
  --bg-card-hover: #101026;
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --border-color: rgba(255, 255, 255, 0.06);
  --radius: 20px;
  --radius-sm: 12px;
  --glow-purple: 0 0 60px rgba(168, 85, 247, 0.3);
  --glow-blue: 0 0 60px rgba(37, 99, 235, 0.3);
  --glow-pink: 0 0 60px rgba(217, 70, 239, 0.3);
  --glow-green: 0 0 60px rgba(16, 185, 129, 0.3);
  --glow-gold: 0 0 60px rgba(245, 158, 11, 0.3);
  --gradient-master: linear-gradient(90deg, #2563eb, #a855f7, #d946ef, #2563eb);
  --gradient-1: linear-gradient(135deg, #8b5cf6, #d946ef);
  --gradient-2: linear-gradient(135deg, #06b6d4, #3b82f6);
  --gradient-3: linear-gradient(135deg, #10b981, #059669);
  --gradient-4: linear-gradient(135deg, #f59e0b, #ef4444);
  --gradient-5: linear-gradient(135deg, #2563eb, #1d4ed8);
  --gradient-6: linear-gradient(135deg, #a855f7, #6366f1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== PREMIUM AMBIENT BACKGROUND ===== */
.bg-effects {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-effects .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  animation: floatOrb 20s ease-in-out infinite;
}

.bg-effects .orb:nth-child(1) {
  width: 650px;
  height: 600px;
  background: #7c3aed;
  top: -15%;
  left: -10%;
  animation-delay: 0s;
  opacity: 0.25;
}

.bg-effects .orb:nth-child(2) {
  width: 550px;
  height: 550px;
  background: #2563eb;
  bottom: -15%;
  right: -10%;
  animation-delay: -7s;
  opacity: 0.2;
}

.bg-effects .orb:nth-child(3) {
  width: 450px;
  height: 450px;
  background: #d946ef;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -14s;
  opacity: 0.15;
}

.bg-effects .orb:nth-child(4) {
  width: 350px;
  height: 350px;
  background: #10b981;
  top: 70%;
  left: 5%;
  animation-delay: -5s;
  opacity: 0.1;
}

.bg-effects .orb:nth-child(5) {
  width: 300px;
  height: 300px;
  background: #f59e0b;
  top: 10%;
  right: 5%;
  animation-delay: -10s;
  opacity: 0.12;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(80px, -80px) scale(1.1);
  }
  50% {
    transform: translate(-60px, 60px) scale(0.9);
  }
  75% {
    transform: translate(40px, 40px) scale(1.05);
  }
}

/* ===== GRID OVERLAY ===== */
.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    black 50%,
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    black 50%,
    transparent 80%
  );
}
/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .dropbtn {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.dropdown .dropbtn:hover {
  color: #fff;
}

.dropdown .dropbtn i {
  font-size: 10px;
  transition: transform 0.3s;
}

.dropdown .dropbtn.active i {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  animation: dropdownFade 0.25s ease;
}

.dropdown-content.open {
  display: block !important;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dropdown-content a {
  color: var(--text-secondary);
  padding: 10px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  border-left: 2px solid transparent;
  cursor: pointer;
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-left-color: #a855f7;
}

.dropdown-content a i {
  width: 18px;
  color: #a855f7;
  font-size: 14px;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .dropdown {
    width: 100%;
  }
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-top: 4px;
    padding-left: 16px;
    animation: none;
    z-index: 1;
  }
  .dropdown-content a {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .dropdown {
    width: 100%;
  }
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-top: 4px;
    padding-left: 16px;
    animation: none;
  }
  .dropdown-content a {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* ===== NOISE TEXTURE ===== */
.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  position: relative;
  z-index: 1;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== GLOWING BUTTONS ===== */
.btn-glow {
  position: relative;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, #7c3aed, #2563eb, #7c3aed);
  background-size: 300% 300%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  text-decoration: none;
  box-shadow:
    0 0 20px rgba(124, 58, 237, 0.4),
    0 0 40px rgba(124, 58, 237, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation:
    gradientMove 3s ease infinite,
    pulseGlowBlue 2s ease-in-out infinite;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-glow::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #7c3aed, #2563eb, #d946ef, #7c3aed);
  background-size: 300% 300%;
  border-radius: 52px;
  z-index: -1;
  animation: gradientMove 4s ease infinite;
  filter: blur(8px);
  opacity: 0.6;
}

.btn-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
  animation: shineSweep 4s infinite;
}

.btn-glow:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 0 30px rgba(124, 58, 237, 0.6),
    0 0 60px rgba(124, 58, 237, 0.3),
    0 0 80px rgba(124, 58, 237, 0.15);
}

.btn-glow:hover::before {
  opacity: 1;
  filter: blur(12px);
}

.btn-glow:active {
  transform: scale(0.97);
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulseGlowBlue {
  0%,
  100% {
    box-shadow:
      0 0 20px rgba(124, 58, 237, 0.4),
      0 0 40px rgba(124, 58, 237, 0.2);
  }
  50% {
    box-shadow:
      0 0 30px rgba(124, 58, 237, 0.7),
      0 0 60px rgba(124, 58, 237, 0.3),
      0 0 80px rgba(124, 58, 237, 0.1);
  }
}

@keyframes shineSweep {
  0% {
    left: -100%;
  }
  25% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

/* ===== SECONDARY BUTTON ===== */
.btn-secondary {
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: inherit;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ===== NAVBAR ===== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 99999; /* Increased from 100 */
  background: rgba(3, 3, 7, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.navbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 24px;
} /* ============================================
   LOGO WITH NEON GLOW & ROTATION - COMPLETE
   ============================================ */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: 900;
  position: relative;
  background: linear-gradient(135deg, #2563eb, #a855f7);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
  /* ===== ANIMATIONS ===== */
  animation:
    neonGlow 2s ease-in-out infinite,
    rotateIcon 6s linear infinite;
}

/* ===== NEON GLOW PULSE ===== */
@keyframes neonGlow {
  0%,
  100% {
    box-shadow:
      0 0 20px rgba(168, 85, 247, 0.3),
      0 0 40px rgba(168, 85, 247, 0.15);
  }
  50% {
    box-shadow:
      0 0 40px rgba(168, 85, 247, 0.6),
      0 0 80px rgba(168, 85, 247, 0.3),
      0 0 120px rgba(168, 85, 247, 0.1);
  }
}

/* ===== ROTATION ===== */
@keyframes rotateIcon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ===== LOGO TEXT ===== */
.logo span {
  background: linear-gradient(90deg, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
.nav-links a:hover {
  color: #fff;
}
.nav-links a.active {
  color: #fff;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #a855f7);
  border-radius: 2px;
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 1024px) {
  .search-container {
    max-width: 160px;
  }
  .search-input {
    min-width: 80px;
    padding: 6px 12px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 16px;
    gap: 8px;
  }

  .logo {
    font-size: 20px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .search-container {
    order: 4;
    width: 100%;
    max-width: 100%;
  }

  .search-input {
    width: 100%;
    padding: 10px 14px;
    min-width: unset;
  }

  .btn-glow {
    order: 5;
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
  }

  .mobile-toggle {
    display: block;
    order: 6;
  }
}
/* ============================================
   PREMIUM FOOTER
   ============================================ */

.premium-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 60px 24px 0;
  margin-top: 40px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

/* ===== Footer Column ===== */
.footer-col h4 {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-master);
  background-size: 200% auto;
  animation: shiftGradient 4s linear infinite;
  border-radius: 2px;
}

/* ===== Footer Logo ===== */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  margin-bottom: 14px;
}

.footer-logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.footer-logo span {
  background: linear-gradient(90deg, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Footer About ===== */
.footer-about {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 320px;
}

/* ===== Social Links ===== */
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.08);
}

.social-link.fb {
  background: #1877f2;
}
.social-link.tw {
  background: #1da1f2;
}
.social-link.ig {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.social-link.yt {
  background: #ff0000;
}
.social-link.tg {
  background: #0088cc;
}
.social-link.wa {
  background: #25d366;
}

/* ===== Footer Lists ===== */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  cursor: pointer;
}

.footer-col ul li a:hover {
  color: #a855f7;
  padding-left: 4px;
}

/* ===== Contact Info ===== */
.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14px;
}

.contact-info li i {
  width: 18px;
  color: #a855f7;
  font-size: 14px;
}

.contact-info li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info li a:hover {
  color: #a855f7;
}

/* ===== Footer Bottom ===== */
.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-inner p {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-bottom-inner p strong {
  color: var(--text-secondary);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #a855f7;
}

.footer-payments {
  display: flex;
  gap: 14px;
  font-size: 24px;
  color: var(--text-muted);
}

.footer-payments i {
  transition: color 0.3s;
}

.footer-payments i:hover {
  color: var(--text-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-about {
    max-width: 100%;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .contact-info li {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-payments {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .premium-footer {
    padding: 40px 16px 0;
  }

  .footer-container {
    gap: 20px;
  }

  .footer-bottom-links {
    gap: 12px;
  }

  .footer-bottom-links a {
    font-size: 12px;
  }
}

/* ===== TOAST & MODAL ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  max-width: 460px;
  width: 100%;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  animation: scaleIn 0.3s ease;
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ===== UTILITY ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

/* ===== RESPONSIVE (shared) ===== */
@media (max-width: 768px) {
  .navbar-inner {
    padding: 0 14px;
    height: 64px;
    gap: 8px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #070710;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
    flex-shrink: 0;
  }
  .logo {
    font-size: 18px;
    gap: 8px;
    min-width: 0;
  }
  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 15px;
    flex-shrink: 0;
  }
  .navbar .btn-glow {
    display: none;
  }
}

@media (max-width: 380px) {
  .logo span {
    font-size: 15px;
  }
}

/* ============================================
   STICKY WHATSAPP ICON
   ============================================ */
.sticky-wa {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  animation: waPulse 2s ease-in-out infinite;
}

.sticky-wa:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 4px 35px rgba(37, 211, 102, 0.7),
      0 0 60px rgba(37, 211, 102, 0.2);
  }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--gradient-master);
  background-size: 200% auto;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: shiftGradient 4s linear infinite;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 35px rgba(168, 85, 247, 0.6);
}

/* ============================================
   LIVE NOTIFICATION TOAST
   ============================================ */
#liveNotification {
  position: fixed;
  bottom: 180px;
  left: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  width: 100%;
  pointer-events: none;
}

.live-notification {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  animation: notifSlideIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: auto;
  backdrop-filter: blur(12px);
  background: rgba(11, 11, 24, 0.92);
  border-left: 3px solid #a855f7;
}

.live-notification.closing {
  animation: notifSlideOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.live-notification .notification-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 50%;
}

.live-notification .notification-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.live-notification .notification-text .notification-message {
  color: var(--text-primary);
}

.live-notification .notification-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s;
  flex-shrink: 0;
}

.live-notification .notification-close:hover {
  color: #fff;
}

@keyframes notifSlideIn {
  from {
    opacity: 0;
    transform: translateX(-40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes notifSlideOut {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(-40px) scale(0.95);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #liveNotification {
    bottom: 160px;
    left: 12px;
    max-width: calc(100% - 24px);
  }

  .live-notification {
    padding: 12px 14px;
    font-size: 12px;
  }

  .live-notification .notification-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
  }

  .sticky-wa {
    width: 48px;
    height: 48px;
    font-size: 24px;
    bottom: 80px;
    right: 16px;
  }

  .scroll-top {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 16px;
    right: 16px;
  }
}
