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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3 {
  font-family: "Fredoka One", cursive;
}

.gradient-text {
  background: linear-gradient(45deg, #00d4ff, #5865f2, #1da1f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-title {
  font-family: "Fredoka One", cursive;
  font-size: 1.5rem;
  color: #00d4ff;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #00d4ff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #00d4ff, #5865f2);
  transition: width 0.3s ease;
}

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

.nav-mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: #00d4ff;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 C150,120 350,0 600,60 C850,120 1050,0 1200,60 L1200,120 L0,120 Z' fill='%2300d4ff' fill-opacity='0.3'/%3E%3C/svg%3E")
    repeat-x;
  animation: wave 8s ease-in-out infinite;
}

.wave1 {
  animation-delay: 0s;
  opacity: 0.7;
}

.wave2 {
  animation-delay: -2s;
  opacity: 0.5;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 C150,120 350,0 600,60 C850,120 1050,0 1200,60 L1200,120 L0,120 Z' fill='%235865f2' fill-opacity='0.4'/%3E%3C/svg%3E")
    repeat-x;
}

.wave3 {
  animation-delay: -4s;
  opacity: 0.3;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 C150,120 350,0 600,60 C850,120 1050,0 1200,60 L1200,120 L0,120 Z' fill='%231da1f2' fill-opacity='0.2'/%3E%3C/svg%3E")
    repeat-x;
}

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

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-title {
  font-size: 4rem;
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(45deg, #00d4ff, #5865f2);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-twitter {
  background: linear-gradient(45deg, #1da1f2, #0d8bd9);
  color: white;
  box-shadow: 0 4px 15px rgba(29, 161, 242, 0.4);
}

.btn-twitter:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.6);
}

.btn-dex {
  background: linear-gradient(45deg, #1ae875, #0fa958);
  color: white;
  box-shadow: 0 4px 15px rgba(26, 232, 117, 0.4);
}

.btn-dex:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 232, 117, 0.6);
}

.mascot-container {
  position: relative;
  display: flex;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.mascot-img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.3));
}

.mascot-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

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

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  color: #333;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #00d4ff, #5865f2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.card p {
  color: #666;
  line-height: 1.6;
}

/* Token Info Section */
.token-info {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.token-info .section-title {
  color: white;
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.token-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.token-card:hover {
  transform: translateY(-5px);
}

.token-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.token-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00d4ff;
}

.contract-card {
  position: relative;
}

.contract-address {
  font-size: 1rem;
  font-family: "Courier New", monospace;
  word-break: break-all;
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.copy-btn {
  background: linear-gradient(45deg, #00d4ff, #5865f2);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.token-description {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.token-description h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.token-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* Community Section */
.community {
  padding: 100px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.community .section-title {
  color: white;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.social-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.social-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.social-card i {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.social-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.social-card p {
  opacity: 0.9;
}

.telegram:hover i {
  color: #0088cc;
}
.twitter:hover i {
  color: #1da1f2;
}
.website:hover i {
  color: #00d4ff;
}
.dexscreener:hover i {
  color: #1ae875;
}

/* Video Showcase Section */
.video-showcase {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  color: white;
}

.video-showcase .section-title {
  color: white;
  margin-bottom: 20px;
}

.video-showcase .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-10px);
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.showcase-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
}

.video-info {
  padding: 25px;
  text-align: center;
}

.video-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: white;
}

.video-info p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-title {
  font-family: "Fredoka One", cursive;
  font-size: 2rem;
  color: #00d4ff;
}

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

.footer-social a {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #00d4ff, #5865f2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  opacity: 0.7;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(45deg, #00d4ff, #5865f2);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 1001;
}

.toast.show {
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 0 15px;
    height: 60px;
  }

  .nav-logo-img {
    width: 35px;
    height: 35px;
  }

  .nav-title {
    font-size: 1.2rem;
  }

  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
    font-size: 1.2rem;
  }

  .hero {
    padding: 80px 0 40px;
    min-height: 90vh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }

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

  .btn {
    padding: 12px 18px;
    font-size: 0.85rem;
    min-width: 120px;
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
  }

  .mascot-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
  }

  .mascot-glow {
    width: 200px;
    height: 200px;
  }

  .scroll-indicator {
    bottom: 20px;
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .about,
  .token-info,
  .community {
    padding: 60px 0;
  }

  .about-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .card-content {
    flex: 1;
  }

  .card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }

  .card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .token-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .token-card {
    padding: 20px;
  }

  .token-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .token-value {
    font-size: 1.4rem;
  }

  .contract-address {
    font-size: 0.8rem;
    padding: 10px;
    margin-bottom: 10px;
  }

  .copy-btn {
    padding: 8px 15px;
    font-size: 0.8rem;
  }

  .token-description {
    padding: 25px 20px;
  }

  .token-description h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .token-description p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .video-showcase {
    padding: 60px 0;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
  }

  .video-card {
    margin: 0 15px;
  }

  .video-wrapper {
    padding-bottom: 56.25%;
  }

  .video-info {
    padding: 20px;
  }

  .video-info h3 {
    font-size: 1.2rem;
  }

  .video-info p {
    font-size: 0.9rem;
  }

  .social-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .social-card {
    padding: 25px 20px;
  }

  .social-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .social-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .social-card p {
    font-size: 0.9rem;
  }

  .footer {
    padding: 40px 0 15px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-title {
    font-size: 1.5rem;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }

  .toast {
    right: 15px;
    left: 15px;
    padding: 12px 20px;
    font-size: 0.9rem;
    transform: translateY(100px);
  }

  .toast.show {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .nav-container {
    padding: 0 10px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 5px;
  }

  .btn {
    padding: 10px 14px;
    font-size: 0.8rem;
    min-width: 100px;
    flex: 1 1 calc(50% - 6px);
  }

  .mascot-img {
    width: 150px;
    height: 150px;
  }

  .mascot-glow {
    width: 170px;
    height: 170px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .card {
    padding: 15px 10px;
    gap: 12px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .card h3 {
    font-size: 1rem;
    margin-bottom: 3px;
  }

  .card p {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .token-card {
    padding: 15px;
  }

  .token-value {
    font-size: 1.2rem;
  }

  .contract-address {
    font-size: 0.75rem;
    padding: 8px;
  }

  .copy-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .token-description {
    padding: 20px 15px;
  }

  .token-description h3 {
    font-size: 1.3rem;
  }

  .token-description p {
    font-size: 0.9rem;
  }

  .social-card {
    padding: 20px 15px;
  }

  .social-card i {
    font-size: 2rem;
  }

  .social-card h3 {
    font-size: 1.1rem;
  }

  .social-card p {
    font-size: 0.85rem;
  }

  .footer-social a {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .toast {
    padding: 10px 15px;
    font-size: 0.85rem;
    right: 10px;
    left: 10px;
  }
}

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

/* Sliding Ticker */
.ticker-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
  overflow: hidden;
}

.ticker-slide {
  position: absolute;
  width: 200%;
  height: 60px;
  overflow: hidden;
  opacity: 0.3;
}

.ticker-top {
  top: 20%;
  transform: rotate(-5deg);
}

.ticker-middle {
  top: 50%;
  transform: translateY(-50%) rotate(3deg);
}

.ticker-bottom {
  bottom: 20%;
  transform: rotate(-2deg);
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  animation: slideRight 15s linear infinite;
  height: 100%;
}

.ticker-content.reverse {
  animation: slideLeft 20s linear infinite;
}

.ticker-logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: grayscale(20%) brightness(1.3);
}

.ticker-text {
  font-family: "Fredoka One", cursive;
  font-size: 2.2rem;
  color: #00d4ff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

@keyframes slideRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Mobile ticker adjustments */
@media (max-width: 768px) {
  .ticker-slide {
    height: 40px;
    opacity: 0.25;
  }

  .ticker-logo {
    width: 30px;
    height: 30px;
  }

  .ticker-text {
    font-size: 1.5rem;
  }

  .ticker-content {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .ticker-slide {
    height: 35px;
    opacity: 0.2;
  }

  .ticker-logo {
    width: 25px;
    height: 25px;
  }

  .ticker-text {
    font-size: 1.2rem;
  }

  .ticker-content {
    gap: 15px;
  }
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #00d4ff, #5865f2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #5865f2, #00d4ff);
}
