/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0a0a0a;
  --secondary-color: #1a1a1a;
  --accent-color: #00ff88;
  --accent-purple: #a855f7;
  --white-bg: #ffffff;
  --light-gray: #f5f5f5;
  --text-white: #ffffff;
  --text-gray: #a0a0a0;
  --card-bg: #151515;
  --border-color: #2a2a2a;
  --spacing: 80px;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--primary-color);
  color: var(--text-white);
  overflow-x: hidden;
  overflow-y: hidden;
  height: 100vh;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

#preloader img {
  max-width: 500px;
  height: auto;
  width: 80%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 15px 0;
  background-color: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 2px;
  font-family: 'Exo', sans-serif;
  position: relative;
}

.nav-brand::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-purple));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

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

.nav-menu a:hover::after {
  width: 100%;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero-content {
  max-width: 800px;
}

.hero-subtitle {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
}

.hero-title {
  font-size: 80px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 5px;
  line-height: 1;
  color: var(--text-white);
  font-family: 'Exo', sans-serif;
  text-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
}

.hero-tagline {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-gray);
}

.hero-service {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: var(--text-white);
  font-family: 'Exo', sans-serif;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--text-gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description strong {
  color: var(--accent-color);
  font-weight: 600;
}

.hero-description strong {
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-purple));
  color: var(--primary-color);
  font-weight: 600;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid var(--accent-color);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-purple));
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  left: 0;
}

.btn-secondary:hover {
  color: var(--primary-color);
  border-color: var(--accent-color);
}

.btn-white {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-purple));
  color: var(--primary-color);
  font-weight: 600;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
}

.btn-white-outline {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid var(--accent-color);
}

.btn-white-outline:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-purple));
  color: var(--primary-color);
  border-color: transparent;
}

/* Section Styles */
section {
  padding: var(--spacing) 0;
}

.section-label {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 15px;
  color: var(--accent-color);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  color: var(--text-white);
  font-family: 'Exo', sans-serif;
}

.section-subtitle {
  font-size: 18px;
  margin-bottom: 50px;
  color: var(--text-gray);
  text-align: center;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background-color: var(--card-bg);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-purple));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Exo', sans-serif;
}

.stat-label {
  font-size: 16px;
  color: var(--text-gray);
}

.features-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: var(--text-white);
}

.feature-item i {
  font-size: 24px;
  color: var(--accent-color);
}

/* About Section */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-text {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  position: relative;
}

.about-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-purple));
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text strong {
  color: var(--accent-color);
  font-weight: 600;
}

/* Founders Section (legacy) */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.founder-card {
  background-color: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-purple));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
  border-color: var(--accent-color);
}

.founder-card:hover::before {
  opacity: 1;
}

.founder-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info {
  padding: 20px;
  text-align: center;
}

.founder-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-white);
  font-weight: 600;
}

.founder-info p {
  color: var(--text-gray);
  font-size: 14px;
}

/* Clients Section */
.clients {
  overflow: hidden;
  position: relative;
}

.clients-grid {
  max-width: 600px;
  margin: 0 auto;
  height: 500px;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  padding: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) var(--secondary-color);
}

.clients-grid::-webkit-scrollbar {
  width: 8px;
}

.clients-grid::-webkit-scrollbar-track {
  background: var(--secondary-color);
  border-radius: 10px;
}

.clients-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-color), var(--accent-purple));
  border-radius: 10px;
}

.clients-grid::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

.client-card {
  background-color: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--border-color);
  position: relative;
  margin-bottom: 30px;
  scroll-snap-align: center;
  height: 450px;
  display: flex;
  flex-direction: column;
}

.client-card:last-child {
  margin-bottom: 0;
}

.client-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-purple));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
  border-color: var(--accent-color);
}

.client-card:hover::after {
  opacity: 1;
}

.client-card:active {
  transform: scale(0.98);
}

.client-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.client-image::after {
  content: '🔍 Cliquer pour plus de détails';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: var(--accent-color);
  font-size: 14px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: 600;
}

.client-card:hover .client-image::after {
  opacity: 1;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.client-card:hover .client-image img {
  transform: scale(1.1);
}

.client-info {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.client-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--text-white);
  font-weight: 700;
  font-family: 'Exo', sans-serif;
}

.client-info p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
}

/* Video Section */
.video-section {
  text-align: center;
}

.video-player {
  width: 100%;
  max-width: 600px;
  height: 350px;
  background: linear-gradient(135deg, var(--card-bg), var(--secondary-color));
  border-radius: 20px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-purple));
  color: var(--primary-color);
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 50px rgba(0, 255, 136, 0.5);
}

/* Services Section */
.services-list {
  max-width: 800px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  margin-bottom: 15px;
  background-color: var(--card-bg);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--accent-color), var(--accent-purple));
  transition: height 0.3s ease;
  border-radius: 0 3px 3px 0;
}

.service-item:hover {
  background-color: var(--secondary-color);
  transform: translateX(10px);
  border-color: var(--accent-color);
  box-shadow: 0 5px 30px rgba(0, 255, 136, 0.15);
}

.service-item:hover::before {
  height: 60%;
}

.service-item i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 5px;
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-white);
  font-weight: 600;
}

.service-item p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.social-links a i {
  transition: transform 0.3s ease;
}

.social-links a:hover i {
  transform: scale(1.2);
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.footer-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-copyright {
  color: var(--text-gray);
  font-size: 14px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: var(--card-bg);
  border-radius: 20px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid var(--border-color);
  animation: modalSlideIn 0.4s ease;
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-purple));
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-purple));
  color: var(--primary-color);
  transform: rotate(90deg);
}

.modal-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.modal-body {
  padding: 40px;
}

.modal-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  font-family: 'Exo', sans-serif;
}

.modal-subtitle {
  font-size: 16px;
  color: var(--accent-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.modal-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.modal-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.modal-detail-item {
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.modal-detail-item h4 {
  font-size: 14px;
  color: var(--accent-color);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-detail-item p {
  font-size: 16px;
  color: var(--text-white);
  font-weight: 600;
}

.modal-technologies {
  margin-bottom: 30px;
}

.modal-technologies h4 {
  font-size: 14px;
  color: var(--accent-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  background-color: var(--secondary-color);
  color: var(--text-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.modal-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 36px;
  }

  .stat-number {
    font-size: 42px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }

  .client-card {
    min-width: 280px;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .modal-body {
    padding: 30px 20px;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-details {
    grid-template-columns: 1fr;
  }
}

/* CTA Section Dark */
.cta {
  background: radial-gradient(circle at center, var(--secondary-color) 0%, var(--primary-color) 100%);
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

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

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  }
  50% {
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Maintenance Page */
.maintenance {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  position: relative;
}

.maintenance-content {
  text-align: center;
  max-width: 600px;
  padding: 40px;
  animation: fadeInUp 1s ease;
}

.maintenance-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 30px;
  letter-spacing: 5px;
  font-family: 'Exo', sans-serif;
  position: relative;
}

.maintenance-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-purple));
}

.maintenance-icon {
  font-size: 80px;
  margin: 40px 0;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.maintenance-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  font-family: 'Exo', sans-serif;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.maintenance-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 15px;
}

.maintenance-subtext {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: 600;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-purple);
}
