/* <!-- Developed by: @skarch_gg !--> */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(30, 30, 30, 0.9);
  backdrop-filter: blur(3px);
  padding: 8px 16px;
  border-radius: 12px;
  margin: 20px auto;
  max-width: 800px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.logo img {
  width: 20px;
  height: 20px;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
}

.nav-links a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: white;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  border: none;
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-btn:hover {
  transform: scale(1.05);
}

.icon-btn i {
  font-size: 14px;
  color: white;
}

.icon-btn.youtube {
  background-color: #FF0000;
}

.icon-btn.discord {
  background-color: #5865F2;
}

.icon-btn.twitter {
  background-color: #1DA1F2;
}

.icon-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: bold;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.icon-btn:hover::after {
  opacity: 1;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.card {
  background: linear-gradient(145deg, #1a1a1a, #121212);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0.95;
}

.card:hover {
  transform: translateY(-6px) scale(1.015);
  opacity: 1;
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(0.95);
}

.card:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

.card h3 {
  color: #e0dcff;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}

.card:hover h3 {
  color: #c4b5fd;
}

.download-btn {
  display: inline-block;
  background-color: #7c3aed;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-btn:hover {
  background-color: #9f5fff;
  transform: scale(1.05);
}

::selection {
  background-color: #7c3aed;
  color: #fff;
  text-shadow: none;
}

