/* ==========================================
   CrafterWorld.de - Stylesheet
   Hauptfarbe: #1BFF00 | Sekundärfarbe: #00E5FD
   ========================================== */

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1BFF00;
  --primary-dark: #15cc00;
  --primary-glow: rgba(27, 255, 0, 0.3);
  --secondary: #00E5FD;
  --secondary-dark: #00b8ca;
  --secondary-glow: rgba(0, 229, 253, 0.3);
  --bg-dark: #0a0e14;
  --bg-card: #111821;
  --bg-card-hover: #182030;
  --bg-nav: rgba(10, 14, 20, 0.92);
  --text: #e4e8f0;
  --text-muted: #8892a4;
  --text-bright: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow-primary: 0 0 30px rgba(27, 255, 0, 0.15);
  --shadow-glow-secondary: 0 0 30px rgba(0, 229, 253, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

.hidden {
  display: none !important;
}

/* === Navbar === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 14, 20, 0.98);
  box-shadow: var(--shadow);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-bright);
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.nav-logo span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-bright);
  background: rgba(255, 255, 255, 0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  box-shadow: var(--shadow-glow-primary);
}

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

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: #000;
  box-shadow: var(--shadow-glow-secondary);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 229, 253, 0.3);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-shop {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
}

.btn-shop:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(27, 255, 0, 0.2);
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10, 14, 20, 0.3) 0%, rgba(10, 14, 20, 0.85) 70%),
    linear-gradient(180deg, transparent 60%, var(--bg-dark) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 100px 24px 60px;
  animation: fadeInUp 1s ease-out;
}

.hero-logo {
  width: 140px;
  height: 140px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 40px rgba(27, 255, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 16px;
  line-height: 1.2;
}

.text-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* Server IP Display */
.server-ip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(27, 255, 0, 0.05);
  border: 2px solid rgba(27, 255, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 16px 40px;
  margin-bottom: 32px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.server-ip:hover {
  border-color: var(--primary);
  background: rgba(27, 255, 0, 0.1);
  box-shadow: var(--shadow-glow-primary);
}

.ip-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-weight: 600;
}

.ip-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: 0.05em;
}

.ip-copy-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0;
  transition: var(--transition);
}

.server-ip:hover .ip-copy-hint {
  opacity: 1;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
}

.hero-scroll a {
  color: var(--text-muted);
  transition: var(--transition);
}

.hero-scroll a:hover {
  color: var(--primary);
}

/* === Section Base === */
.section {
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--text-bright);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

/* === News Section === */
.news-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1117 100%);
}

.news-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--text-bright);
  border-color: rgba(255, 255, 255, 0.15);
}

.tab-btn.active[data-tab="updates"] {
  background: rgba(27, 255, 0, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.tab-btn.active[data-tab="neuigkeiten"] {
  background: rgba(0, 229, 253, 0.1);
  border-color: var(--secondary);
  color: var(--secondary);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.news-card.update::before {
  background: linear-gradient(90deg, var(--primary), transparent);
}

.news-card.neuigkeit::before {
  background: linear-gradient(90deg, var(--secondary), transparent);
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.news-card .news-type {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.news-card.update .news-type {
  color: var(--primary);
}

.news-card.neuigkeit .news-type {
  color: var(--secondary);
}

.news-card .news-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.news-card .news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.news-card .news-author {
  font-weight: 500;
}

.news-placeholder {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 20px;
  color: var(--text-muted);
}

.news-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.news-empty svg {
  margin-bottom: 12px;
  opacity: 0.4;
}

/* === Team Section === */
.team-section {
  background: linear-gradient(180deg, #0d1117 0%, var(--bg-dark) 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  justify-items: center;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  width: 100%;
  max-width: 280px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 255, 0, 0.2);
  box-shadow: var(--shadow-glow-primary);
}

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

.team-card .team-head {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  image-rendering: pixelated;
  border: 3px solid var(--border);
  transition: var(--transition);
}

.team-card:hover .team-head {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(27, 255, 0, 0.2);
}

.team-card .team-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 6px;
}

.team-card .team-rang {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 50px;
  display: inline-block;
  background: rgba(27, 255, 0, 0.1);
  color: var(--primary);
  border: 1px solid rgba(27, 255, 0, 0.2);
}

/* === Footer === */
.footer {
  background: #060a0f;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  border-radius: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.server-ip-small {
  display: inline-flex;
  padding: 8px 20px;
  background: rgba(27, 255, 0, 0.08);
  border: 1px solid rgba(27, 255, 0, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.server-ip-small:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow-primary);
}

.server-ip-small span {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  word-break: break-all;
}

.contact-email:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* === Content Pages (Regelwerk, Impressum) === */
.content-page {
  padding-top: 120px;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1117 50%, var(--bg-dark) 100%);
}

.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Regelwerk Styles */
.rule-section {
  margin-bottom: 40px;
}

.rule-section:last-child {
  margin-bottom: 0;
}

.rule-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rule-block {
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 2px solid rgba(27, 255, 0, 0.15);
}

.rule-subheading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 8px;
  margin-bottom: 16px;
}

.rule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rule-list li {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition);
}

.rule-list li:hover {
  background: rgba(27, 255, 0, 0.04);
}

.rule-label {
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 4px;
}

/* Impressum / Legal Styles */
.legal-section {
  margin-bottom: 32px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.legal-section p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-source {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.legal-source p {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

.text-link {
  color: var(--secondary);
  transition: var(--transition);
}

.text-link:hover {
  color: var(--primary);
}

/* Active nav link */
.nav-links a.active {
  color: var(--primary);
  background: rgba(27, 255, 0, 0.08);
}

/* Footer Impressum link */
.footer-bottom a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .content-page {
    padding-top: 100px;
  }

  .content-card {
    padding: 24px 20px;
  }

  .rule-heading {
    font-size: 1.3rem;
  }
}

/* === Toast === */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary);
  color: #000;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 10000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* === Spinner === */
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* === Mobile Navigation === */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-logo {
    width: 100px;
    height: 100px;
  }

  .server-ip {
    padding: 12px 24px;
  }

  .ip-value {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

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

  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }

  .team-card {
    padding: 24px 16px;
  }

  .team-card .team-head {
    width: 64px;
    height: 64px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .news-card {
    padding: 20px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

}

/* Vote Cards */
.vote-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 30px auto 0;
}

.vote-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.vote-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  transition: all 0.3s ease;
}

/* Karte 1 - Grün */
.vote-card:nth-child(1) {
  background: rgba(27, 255, 0, 0.04);
  border-color: rgba(27, 255, 0, 0.15);
}
.vote-card:nth-child(1)::before {
  background: var(--primary);
}
.vote-card:nth-child(1):hover {
  transform: translateY(-3px);
  background: rgba(27, 255, 0, 0.08);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(27, 255, 0, 0.15);
}
.vote-card:nth-child(1) .vote-icon {
  background: rgba(27, 255, 0, 0.12);
  color: var(--primary);
}
.vote-card:nth-child(1):hover .vote-icon {
  background: rgba(27, 255, 0, 0.25);
  transform: scale(1.05);
}
.vote-card:nth-child(1) .vote-name {
  color: var(--primary);
}
.vote-card:nth-child(1) .vote-btn {
  border-color: var(--primary);
  color: var(--primary);
}
.vote-card:nth-child(1):hover .vote-btn {
  background: var(--primary);
  color: #000;
  box-shadow: 0 4px 15px rgba(27, 255, 0, 0.25);
}

/* Karte 2 - Cyan */
.vote-card:nth-child(2) {
  background: rgba(0, 229, 253, 0.04);
  border-color: rgba(0, 229, 253, 0.15);
}
.vote-card:nth-child(2)::before {
  background: var(--secondary);
}
.vote-card:nth-child(2):hover {
  transform: translateY(-3px);
  background: rgba(0, 229, 253, 0.08);
  border-color: var(--secondary);
  box-shadow: 0 8px 30px rgba(0, 229, 253, 0.15);
}
.vote-card:nth-child(2) .vote-icon {
  background: rgba(0, 229, 253, 0.12);
  color: var(--secondary);
}
.vote-card:nth-child(2):hover .vote-icon {
  background: rgba(0, 229, 253, 0.25);
  transform: scale(1.05);
}
.vote-card:nth-child(2) .vote-name {
  color: var(--secondary);
}
.vote-card:nth-child(2) .vote-btn {
  border-color: var(--secondary);
  color: var(--secondary);
}
.vote-card:nth-child(2):hover .vote-btn {
  background: var(--secondary);
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 229, 253, 0.25);
}

/* Karte 3 - Lila/Violett */
.vote-card:nth-child(3) {
  background: rgba(168, 85, 247, 0.04);
  border-color: rgba(168, 85, 247, 0.15);
}
.vote-card:nth-child(3)::before {
  background: #a855f7;
}
.vote-card:nth-child(3):hover {
  transform: translateY(-3px);
  background: rgba(168, 85, 247, 0.08);
  border-color: #a855f7;
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.15);
}
.vote-card:nth-child(3) .vote-icon {
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
}
.vote-card:nth-child(3):hover .vote-icon {
  background: rgba(168, 85, 247, 0.25);
  transform: scale(1.05);
}
.vote-card:nth-child(3) .vote-name {
  color: #a855f7;
}
.vote-card:nth-child(3) .vote-btn {
  border-color: #a855f7;
  color: #a855f7;
}
.vote-card:nth-child(3):hover .vote-btn {
  background: #a855f7;
  color: #000;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.25);
}

.vote-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.vote-info {
  flex: 1;
}

.vote-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

.vote-description {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 4px;
}

.vote-btn {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .vote-card {
    flex-wrap: wrap;
    padding: 22px 20px;
    gap: 16px;
  }

  .vote-info {
    flex: 1 1 calc(100% - 80px);
  }

  .vote-btn {
    width: 100%;
    text-align: center;
  }
}
