.btn-gradient-violet {
    background-color: #5865F2 !important;
}

.btn-gradient-violet:hover {
    background-color: #525ee1 !important;
}

    /* Glassmorphism Navbar */
    .glass-navbar {
      position: fixed !important;
      left: 50%;
      transform: translateX(-50%);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      z-index: 999;
      transition: all 0.3s ease;
      top: 22px;
      width: 100%;
    }

    .nav-link {
      color: white !important;
      transition: color 0.3s;
    }

    .nav-link:hover {
      color: #5865F2 !important;
    }

    .btn-glass {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.3);
      transition: background 0.3s, color 0.3s;
    }

    .btn-glass:hover {
      background: rgba(255, 255, 255, 0.4);
      color: black;
    }

    .navbar-brand img {
      height: 35px;
    }

    .card-body {
      background: linear-gradient(145deg, #5865F2, #434db8);
      border-radius: 15px;
    }

.glass-footer {
  left: 50%;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
}



.navbar > li > a:hover {
  background: #444;
}
/* Dropdown Menü */
.dropdown {
  position: relative;
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(34, 34, 34, 0.9); /* dunkler Hintergrund passend zur Navbar */
  min-width: 200px;
  border-radius: 10px;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
  background: #5865F2; /* Discord-Violett beim Hover */
  color: #fff;
}

/* Dropdown beim Hover öffnen */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Pfeil */
.arrow {
  display: inline-block;
  margin-left: 6px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Pfeil dreht sich beim Hover */
.dropdown:hover .arrow {
  transform: rotate(-135deg);
}