/* Enhanced Portfolio Styles */

:root {
  --primary: #39ff14;
  --primary-dark: #00cc66;
  --accent: #00ff99;
  --accent-dark: #00b36b;
  --text-light: #e0e0e0;
  --text-lighter: #f0f0f0;
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-card: rgba(15, 15, 15, 0.9);
  --glow-primary: 0 0 20px rgba(57, 255, 20, 0.3);
  --glow-accent: 0 0 20px rgba(0, 255, 153, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  background: radial-gradient(ellipse at center, #0f0f0f 0%, #000 70%);
  font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  color: var(--text-lighter);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Matrix Canvas Enhancement */
#matrixCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(45deg, #000 0%, #0a0a0a 50%, #000 100%);
  filter: blur(0.8px);
}

/* Enhanced Sidebar */
.sidebar {
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(5, 5, 5, 0.98) 100%);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(0, 255, 136, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.brand-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5), 0 0 20px rgba(0, 255, 136, 0.3);
  text-align: center;
  margin-bottom: 15px;
  animation: glow-pulse 3s ease-in-out infinite alternate;
}

.brand-title span {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 68, 102, 0.5), 0 0 20px rgba(255, 68, 102, 0.3);
}

@keyframes glow-pulse {
  0% { text-shadow: 0 0 10px rgba(0, 255, 136, 0.5), 0 0 20px rgba(0, 255, 136, 0.3); }
  100% { text-shadow: 0 0 15px rgba(0, 255, 136, 0.8), 0 0 30px rgba(0, 255, 136, 0.5); }
}

.tagline {
  font-size: 0.9rem;
  color: #bbb;
  font-style: italic;
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.8;
}

.sidebar a {
  color: var(--text-light);
  text-decoration: none;
  margin: 8px 0;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.sidebar a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
  z-index: -1;
}

.sidebar a:hover::before,
.sidebar a.active-link::before {
  width: 100%;
}

.sidebar a:hover {
  color: #fff;
  transform: translateX(5px);
  box-shadow: var(--glow-primary);
}

.sidebar a.active-link {
  color: #fff;
  background: rgba(0, 255, 136, 0.1);
  border-left: 3px solid var(--primary);
  box-shadow: var(--glow-primary);
}

.sidebar a i {
  margin-right: 12px;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Toggle Button Enhancement */
.toggle-btn {
  display: none;
  cursor: pointer;
  color: var(--primary);
  font-size: 1.8rem;
  padding: 15px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background: rgba(0, 255, 136, 0.1);
  box-shadow: var(--glow-primary);
  transform: scale(1.1);
}

/* Main Content Enhancement */
.main {
  margin-left: 280px;
  padding: 0;
  min-height: 100vh;
}

.section {
  padding: 120px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--primary), transparent);
  transform: translateX(-50%);
}

.section h1 {
  color: var(--primary);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}

.section h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Home Section Enhancement */
#home {
  background: radial-gradient(circle at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
}

#home img {
  border: 4px solid var(--primary);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4), 0 0 60px rgba(0, 255, 136, 0.2);
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

#home img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.6), 0 0 80px rgba(0, 255, 136, 0.3);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

#home h1 {
  font-size: 4rem;
  margin: 30px 0 20px;
  animation: slideInUp 1s ease-out;
}

#home p {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
  animation: slideInUp 1s ease-out 0.2s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Social Icons Enhancement */
.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  animation: slideInUp 1s ease-out 0.4s both;
}

.social-icons a {
  font-size: 2rem;
  padding: 8px;
}
.social-icons {
  gap: 12px;
  margin-top: 15px;
}

.social-icons a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--primary), var(--accent));
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
}



.social-icons a:hover {
  color: #fff;
  transform: translateY(-5px) scale(1.1);
  
}


/* About Section Enhancement */
.about-me-container {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
}

.about-me-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 136, 0.1);
  position: relative;
  overflow: hidden;
}

.about-me-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.about-me-card h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 600;
}

.about-me-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
  color: var(--text-light);
}

.highlight-box {
  margin: 30px 0;
  padding: 20px;
  border-left: 4px solid var(--primary);
  background: rgba(0, 255, 136, 0.05);
  border-radius: 0 10px 10px 0;
  position: relative;
}

.highlight-box::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
}

/* Services Section Enhancement */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  width: 100%;
  max-width: 1000px;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 136, 0.2);
  border-color: var(--primary);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2) contrast(1.1);
  transition: all 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.1);
  filter: brightness(1.4) contrast(1.2);
}

.service-card h3 {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 20px 0 15px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--accent);
}

.service-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Experience & Works Enhancement */
.experience-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 50px;
  width: 100%;
  max-width: 1000px;
}

.experience-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.experience-card:hover::before {
  transform: scaleY(1);
}

.experience-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.3);
}

.experience-card h4 {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.experience-card h3 {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.experience-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Contact Section Enhancement */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  width: 100%;
  max-width: 900px;
}

.contact-info {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-info a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.contact-info a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.contact-info a:hover::after {
  width: 100%;
}

.contact-info a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-lighter);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.contact-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.contact-form button:hover::before {
  left: 100%;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

/* Certificates Section */
.certificates-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
  width: 100%;
  max-width: 1200px;
}

.certificate-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.certificate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transition: left 0.6s ease;
}

.certificate-card:hover::before {
  left: 100%;
}

.certificate-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 255, 136, 0.3);
  border-color: var(--primary);
}

.certificate-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
}

.certificate-card:hover .certificate-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

.certificate-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 20px 0 10px;
  transition: color 0.3s ease;
}

.certificate-card:hover h3 {
  color: var(--accent);
}

.certificate-issuer {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.certificate-description {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.certificate-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 136, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
}

.certificate-card:hover .certificate-badge {
  background: rgba(0, 255, 136, 0.2);
  transform: scale(1.05);
}

/* Hall of Fame Section */
.section-subtitle {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 50px;
  text-align: center;
  max-width: 600px;
  line-height: 1.6;
}

.halloffame-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 50px;
  width: 100%;
  max-width: 1200px;
}

.achievement-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.achievement-card:hover::before {
  transform: scaleX(1);
}

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 136, 0.2);
  border-color: rgba(0, 255, 136, 0.3);
}

.achievement-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(0, 255, 136, 0.5);
}

.achievement-title h3 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  transition: color 0.3s ease;
}

.achievement-card:hover .achievement-title h3 {
  color: var(--accent);
}

.achievement-type {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

.achievement-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.achievement-stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

/* Special styling for different achievement types */
.government-recognition {
  border-color: rgba(255, 215, 0, 0.3);
}

.government-recognition .achievement-icon {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.government-recognition:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.3);
}

.inflectra-hof .achievement-icon {
  background: linear-gradient(135deg, #00ff88, #0099ff);
}

.ctf-champion .achievement-icon {
  background: linear-gradient(135deg, #ff4466, #ff8800);
}

.hackathon-finalist .achievement-icon {
  background: linear-gradient(135deg, #8844ff, #ff4466);
}

.bug-bounty .achievement-icon {
  background: linear-gradient(135deg, #00ff88, #00ccaa);
}

.research-contributor .achievement-icon {
  background: linear-gradient(135deg, #0099ff, #00ff88);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main {
    margin-left: 220px;
  }
  
  .sidebar {
    width: 220px;
    padding: 20px;
  }
  
  .section {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: -100%;
    transition: left 0.3s ease;
    z-index: 1000;
  }
  
  .sidebar.show {
    left: 0;
  }
  
  .toggle-btn {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1100;
  }
  
  .main {
    margin-left: 0;
    padding-top: 80px;
  }
  
  .section {
    padding: 60px 20px;
    min-height: auto;
  }
  
  .section h1 {
    font-size: 2.5rem;
  }
  
  #home h1 {
    font-size: 3rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .services-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .experience-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .certificates-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .halloffame-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .section h1 {
    font-size: 2rem;
  }
  
  #home h1 {
    font-size: 2.5rem;
  }
  
  #home p {
    font-size: 1.1rem;
  }
  
  .about-me-card,
  .service-card,
  .experience-card,
  .contact-info,
  .contact-form {
    padding: 20px;
  }
  
  .certificate-card,
  .achievement-card {
    padding: 20px;
  }
  
  .achievement-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .achievement-stats {
    justify-content: center;
    gap: 20px;
  }
}

/* Scroll animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section[data-aos] {
  animation: fadeInUp 0.8s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--accent), var(--primary));
}
