/* Grundfonts */
.font-inter {
  font-family: 'Inter', sans-serif;
}

.logo-font {
  font-family: 'Orbitron', sans-serif;
}

.hero-section {
  position: relative;
  background-attachment: fixed;
  background-image:
    linear-gradient(rgba(5, 5, 9, 0.2), rgba(5, 5, 9, 0.75)),
    radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.22), transparent 28%),
    radial-gradient(circle at 80% 35%, rgba(250, 204, 21, 0.16), transparent 24%),
    linear-gradient(135deg, #07110c, #050509 55%, #10131a);
  background-color: #050509;
}

.plugin-card {
  background: radial-gradient(circle at top, #1f2933 0, #050509 60%);
  padding: 20px;
  border-radius: 18px;
  transition: 0.2s;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.plugin-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.4);
}

.plugin-art {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(0, 0, 0, 0.3)),
    radial-gradient(circle at 25% 25%, rgba(250, 204, 21, 0.35), transparent 28%),
    #0b0f14;
}

.plugin-art::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
}

.plugin-art::after {
  position: absolute;
  left: 28px;
  bottom: 24px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: 0.08em;
}

.plugin-ranks::after { content: "RANKS"; }
.plugin-board::after { content: "BOARD"; }
.plugin-core::after { content: "CORE"; }
.plugin-crates::after { content: "CRATES"; }

.plugin-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.plugin-text {
  color: #d1d5db;
  margin-bottom: 10px;
}

.plugin-list {
  color: #9ca3af;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.btn-primary {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #020617;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.4);
}

.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 0 26px rgba(34, 197, 94, 0.6);
}

.btn-secondary {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  color: #e5e7eb;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  transition: 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(34, 197, 94, 0.75);
  color: #86efac;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.download-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  padding: 16px;
}

.download-card h3 {
  font-weight: 800;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.download-card p {
  color: #9ca3af;
  margin-bottom: 8px;
}

nav a,
footer a {
  transition: color 0.2s ease, transform 0.2s ease;
}

nav a:hover,
footer a:hover {
  transform: translateY(-1px);
}

input,
textarea {
  color: #e5e7eb;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}
