:root {
  --bg: #0a0a0b;
  --accent: #ff3b3b;
  --accent-glow: rgba(255, 59, 59, 0.4);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --text-primary: #ffffff;
  --text-muted: #b8b8b8;
  
  /* Social brand colors */
  --twitch: #9146ff;
  --youtube: #ff0000;
  --discord: #5865f2;
  --tiktok: #000000;
  --twitter: #1da1f2;
  --instagram: #e4405f;
  --kofi: #ff5e5b;
  --throne: #a855f7;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto Condensed', system-ui, -apple-system, sans-serif;
  background: #0a0a0b;
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* --- Animated Background Blobs --- */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #8b00ff 0%, transparent 70%);
  bottom: -5%;
  right: -5%;
  animation-delay: 7s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
  top: 40%;
  right: 10%;
  animation-delay: 14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* --- Glass Header --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.3s ease;
}

.brand:hover { transform: scale(1.05); }

.brand-crest {
  font-size: 2rem;
  filter: drop-shadow(0 0 20px var(--accent-glow));
  animation: pulse 3s infinite;
}

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

.brand-name {
  font-family: 'UnifrakturCook', serif;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--accent), #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Neue, einheitliche Navigation --- */
nav ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

/* Das ersetzt dein altes 'nav a' */
.btn-nav {
    background: var(--glass) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-primary) !important;
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-nav:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-2px);
    color: white !important;
}

/* Der Mobile-Toggle (falls du ihn nutzt) */
.nav-toggle {
    display: none; /* Standardmäßig aus auf Desktop */
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 2rem;
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* --- Buttons --- */
.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before { width: 300px; height: 300px; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff6b6b);
  color: #000;
  box-shadow: 0 10px 40px var(--accent-glow);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px var(--accent-glow);
}

.btn-ghost {
  background: var(--glass);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  border: 2px solid var(--glass-border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  transform: translateY(-4px);
}

/* --- Cards Section --- */
.cards-section {
  position: relative;
  z-index: 1;
  padding: 2rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out backwards;
  text-align: center;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.15s; }
.card:nth-child(3) { animation-delay: 0.2s; }
.card:nth-child(4) { animation-delay: 0.25s; }
.card:nth-child(5) { animation-delay: 0.3s; }
.card:nth-child(6) { animation-delay: 0.35s; }
.card:nth-child(7) { animation-delay: 0.4s; }
.card:nth-child(8) { animation-delay: 0.45s; }

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.card:hover::before { transform: translateX(0); }
.card:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Brand Colors */
.card-twitch::before { background: var(--twitch); }
.card-youtube::before { background: var(--youtube); }
.card-discord::before { background: var(--discord); }
.card-tiktok::before { background: linear-gradient(90deg, #00f2ea, #ff0050); }
.card-twitter::before { background: var(--twitter); }
.card-instagram::before { background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.card-kofi::before { background: var(--kofi); }
.card-throne::before { background: var(--throne); }

/* Brand Icons */
.card-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  transition: all 0.4s ease;
}
.card-twitch .card-icon { color: var(--twitch); }
.card-youtube .card-icon { color: var(--youtube); }
.card-discord .card-icon { color: var(--discord); }
.card-tiktok .card-icon { background: linear-gradient(135deg, #00f2ea, #ff0050); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.card-twitter .card-icon { color: var(--twitter); }
.card-instagram .card-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.card-kofi .card-icon { color: var(--kofi); }
.card-throne .card-icon { color: var(--throne); }

.card:hover .card-icon { transform: scale(1.15) rotate(5deg); filter: drop-shadow(0 0 20px currentColor); }
.card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--text-primary); font-weight: 700; }
.card p { color: var(--text-muted); line-height: 1.5; font-size: 0.95rem; }

/* --- Footer --- */
footer {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  padding: 2rem;
  text-align: center;
  background: rgba(10, 10, 11, 0.5);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
}
footer small { color: var(--text-muted); }

/* --- Responsive --- */
@media (max-width: 768px) {
  .header-inner { padding: 1rem; }
  nav {
    position: fixed; top: 0; right: 0; width: 280px; height: 100vh;
    background: rgba(10, 10, 11, 0.98); backdrop-filter: blur(20px);
    padding: 5rem 2rem; transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--glass-border);
  }
  nav.open { transform: translateX(0); }
  nav ul { flex-direction: column; gap: 0.5rem; }
  nav a { display: block; padding: 1rem; }
  .nav-toggle { display: block; }
  .hero { min-height: 40vh; padding: 3rem 1rem 1.5rem; }
  .cards { grid-template-columns: 1fr; gap: 1.25rem; }
  .card-icon { font-size: 3rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

/* --- DISCOVER PAGE --- */
.feed-section { position: relative; z-index: 1; padding: 2rem 4rem 4rem; max-width: 1600px; margin: 0 auto; }
.feed-header { text-align: center; margin-bottom: 3rem; animation: fadeInUp 1s ease-out; }
.feed-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.2;
}
.feed-status { text-align: center; font-size: 1.2rem; color: var(--text-muted); padding: 2rem; }
.feed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.feed-card {
  background: var(--glass); backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: 24px;
  text-decoration: none; color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
  animation: fadeInUp 0.6s ease-out backwards;
  display: flex; flex-direction: column;
}
.feed-card:hover { transform: translateY(-12px) scale(1.02); background: rgba(255, 255, 255, 0.12); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); border-color: var(--accent); }
.card-thumbnail-wrapper { position: relative; width: 100%; padding-top: 56.25%; overflow: hidden; border-radius: 24px 24px 0 0; }
.card-thumbnail-wrapper .card-thumbnail { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.feed-card:hover .card-thumbnail { transform: scale(1.05); }
.card-thumbnail-wrapper .card-duration-badge { position: absolute; bottom: 0.75rem; right: 0.75rem; background: rgba(10, 10, 11, 0.8); backdrop-filter: blur(5px); color: var(--text-primary); padding: 0.25rem 0.6rem; border-radius: 8px; font-size: 0.85rem; font-weight: 700; }
.card-thumbnail-wrapper .card-play-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 3rem; color: white;
  background: rgba(0,0,0,0.4); border-radius: 50%; width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all 0.3s ease; pointer-events: none;
}
.card-thumbnail-wrapper .card-play-icon i { position: relative; left: 2px; }
.feed-card:hover .card-play-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.feed-card-info { padding: 1.5rem; flex-grow: 1; }
.feed-card-info h3 { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--text-primary); font-weight: 700; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed-card-info p { color: var(--text-muted); line-height: 1.5; font-size: 0.95rem; }

/* --- PLAYER PAGE --- */
.player-page-layout { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 2rem; padding: 2rem 2rem 4rem; max-width: 1600px; margin: 0 auto; }
.main-video-content { flex: 3; min-width: 320px; }
.sidebar-suggestions { flex: 1; min-width: 300px; background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 1.5rem; align-self: flex-start; }
.sidebar-suggestions h2 { font-size: 1.5rem; margin-bottom: 1.5rem; border-bottom: 2px solid var(--glass-border); padding-bottom: 0.75rem; }
.back-button { display: inline-block; margin-bottom: 1.5rem; color: var(--text-muted); text-decoration: none; font-size: 1.1rem; font-weight: 600; padding: 0.5rem 1rem; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; transition: all 0.3s ease; }
.back-button:hover { color: var(--text-primary); background: rgba(255, 255, 255, 0.15); border-color: var(--accent); }
.custom-video-player-wrapper { position: relative; width: 100%; background: #000; border-radius: 16px; overflow: hidden; aspect-ratio: 16 / 9; }
#video-player { width: 100%; height: 100%; display: block; }
.controls-bar { position: absolute; bottom: 0; left: 0; right: 0; display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%); opacity: 0; transition: opacity 0.3s ease; }
.custom-video-player-wrapper:hover .controls-bar { opacity: 1; }
.control-btn { background: none; border: none; color: white; font-size: 1.1rem; cursor: pointer; padding: 0.5rem; transition: transform 0.2s ease, color 0.2s ease; }
.control-btn:hover { color: var(--accent); transform: scale(1.1); }
input[type="range"].progress-slider { flex-grow: 1; }
input[type="range"].volume-slider { width: 80px; }
input[type="range"] { -webkit-appearance: none; appearance: none; background: rgba(255, 255, 255, 0.3); height: 6px; border-radius: 3px; cursor: pointer; outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); cursor: pointer; transition: background 0.2s ease; }
input[type="range"]::-webkit-slider-thumb:hover { background: #ff6b6b; }
.time-display { color: white; font-size: 0.9rem; font-weight: 600; min-width: 100px; text-align: center; }
.video-info { margin-top: 1.5rem; padding: 1rem; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px; }
.video-info h1 { font-size: 2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem; }
.video-info p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

/* Suggestions */
.suggestion-card { display: flex; gap: 1rem; margin-bottom: 1rem; text-decoration: none; color: inherit; border-radius: 12px; overflow: hidden; transition: background 0.3s ease; }
.suggestion-card:hover { background: rgba(255, 255, 255, 0.1); }
.suggestion-thumb { width: 140px; height: 78px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.suggestion-info h3 { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.25rem; line-height: 1.3; }
.suggestion-info p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.suggestion-info span { font-size: 0.8rem; color: var(--accent); font-weight: 600; }

@media (max-width: 900px) {
  .player-page-layout { flex-direction: column; padding: 1rem; }
  .sidebar-suggestions { width: 100%; }
  .video-info h1 { font-size: 1.5rem; }
  .time-display { min-width: 80px; font-size: 0.8rem; }
  input[type="range"].volume-slider { width: 50px; }
}

/* --- CLICK FIXES --- */
button, a, .btn, .control-btn, .feed-card, .suggestion-card, .back-button, .nav-toggle {
  -webkit-tap-highlight-color: transparent; outline: none; -webkit-user-select: none; user-select: none;
}
button:focus-visible, a:focus-visible, .btn:focus-visible, .feed-card:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px;
}


/* ================================================= */
/* AUTH & DROPDOWN FIX (WICHTIG!)              */
/* ================================================= */

/* 1. Container relativ positionieren */
.nav-auth-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
}

/* 2. Button Styling erzwingen (!important löst den Konflikt) */
nav ul li.nav-auth-container a.btn {
    padding: 0.6rem 1.2rem !important;
    border-radius: 12px;
    font-size: 0.9rem;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transform: none !important; /* Verhindert Hüpfen */
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: white;
}

nav ul li.nav-auth-container a.btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    transform: translateY(-2px) !important;
}

/* 3. Dropdown Styling */
.dropdown-content {
    display: none; /* Standardmäßig versteckt */
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: #141416;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    min-width: 170px;
    z-index: 9999; /* Ganz oben liegen */
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

/* Wird durch JS aktiviert */
.dropdown-content.show {
    display: block;
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Links im Dropdown */
.dropdown-item {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.2s;
    background: transparent !important; /* Überschreibt nav a */
}

.dropdown-item:last-child { border-bottom: none; }

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--accent);
}

.dropdown-item i { width: 16px; text-align: center; }

/* --- Splash Screen Styling --- */
.splash-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: var(--bg); /* Dein Hintergrund */
    color: var(--text-primary);
    font-family: 'Roboto Condensed', sans-serif;
    animation: fadeIn 0.8s ease-out; /* Sanftes Erscheinen */
}

.splash-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    animation: logoPop 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards; /* Logo-Bounce */
    transform: scale(0.8);
    opacity: 0;
}

@keyframes logoPop {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* Dein vorhandenes Brand-Crest und Brand-Name Styling wird hier weiter genutzt */
.splash-logo .brand-crest {
    font-size: 4rem; /* Größer für den Splash */
    animation: none; /* Deaktiviert die Pulse-Animation hier */
    filter: drop-shadow(0 0 30px var(--accent-glow));
}

.splash-logo .brand-name {
    font-size: 3rem; /* Größer für den Splash */
    /* Die Farbverlauf-Styles aus deinem .brand-name werden hier automatisch angewendet */
}

.splash-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: loaderFadeIn 0.8s ease-out 0.5s forwards; /* Verzögertes Erscheinen */
    opacity: 0;
}

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

/* Spinner-Animation */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.splash-loader p {
    font-size: 1.2rem;
    color: var(--text-muted);
} 

/* Premium & Lock Styles */
.premium-blur {
    filter: blur(8px) grayscale(0.5);
    opacity: 0.5;
}

.card-thumbnail-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.lock-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    font-weight: bold;
    gap: 10px;
}

.lock-overlay i {
    font-size: 2rem;
    color: var(--twitch); /* Dein Lila */
    text-shadow: 0 0 15px var(--twitch);
}

.is-locked {
    cursor: not-allowed;
}

.is-locked a {
    pointer-events: none;
}

/* Update-Lock Styles */
.card-locked {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
    pointer-events: none; /* Verhindert Klicks */
}

.card-locked img {
    filter: grayscale(80%) blur(2px);
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    z-index: 10;
    text-align: center;
}

.lock-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ff4444;
}

.lock-overlay span {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.8);
    padding: 4px 8px;
    border-radius: 4px;
}