@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Orbitron:wght@500;700;900&display=swap');

:root {
    --bg-deep: #05060b;
    --bg-panel: rgba(20, 25, 40, 0.6);
    --accent: #8b5cf6;
    --accent-dim: rgba(139, 92, 246, 0.15);
    --accent-glow: rgba(139, 92, 246, 0.6);
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --grad: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

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

body::before {
    content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none;
    background: radial-gradient(800px circle at var(--x, 50%) var(--y, 50%), rgba(139, 92, 246, 0.12), transparent 40%);
    z-index: 1; mix-blend-mode: screen;
}

body {
    background-color: var(--bg-deep); color: var(--text-main); font-family: 'Inter', sans-serif;
    line-height: 1.6; overflow-x: hidden; min-height: 100vh;
    background-image: linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

#starfield { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
.star { position: absolute; background: white; border-radius: 50%; opacity: 0.5; animation: twinkle var(--duration) infinite ease-in-out; }
@keyframes twinkle { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.8; transform: scale(1.2); } }

/* --- NAVIGATION --- */
.topbar { background: rgba(5, 6, 11, 0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; padding: 15px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 10; }
.nav { display: flex; justify-content: space-between; align-items: center; }
.brand { font-family: 'Orbitron', sans-serif; font-weight: 900; color: #fff; text-decoration: none; font-size: 1.2rem; display: flex; align-items: center; gap: 12px; }
.brand span { width: 12px; height: 12px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 15px var(--accent); }
.navlinks a { color: var(--text-muted); text-decoration: none; margin-left: 25px; font-weight: 600; font-size: 0.95rem; transition: 0.3s; position: relative; }
.navlinks a:hover, .navlinks a.active { color: #fff; }
.navlinks a.active::after { content: ''; position: absolute; bottom: -24px; left: 0; width: 100%; height: 2px; background: var(--accent); box-shadow: 0 -2px 10px var(--accent); }

/* --- PANELS & GRIDS --- */
.glass-card {
    background: var(--bg-panel); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: 16px;
    padding: 30px; margin-bottom: 25px; position: relative; overflow: hidden; transition: 0.3s; z-index: 2;
}
.glass-card:hover { border-color: rgba(139, 92, 246, 0.5); transform: translateY(-5px); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.neon-text { color: #fff; text-shadow: 0 0 20px var(--accent-glow); font-family: 'Orbitron', sans-serif; text-transform: uppercase; }

/* --- BUTTONS --- */
.btn { padding: 12px 30px; border-radius: 8px; text-decoration: none; font-weight: 700; transition: 0.3s; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.btn.primary { background: var(--grad); color: #fff; box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3); }
.btn.ghost { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid var(--border); }

/* --- DASHBOARD PRESTIGE --- */
#auth-section { display: flex; align-items: center; margin-left: auto; position: relative; z-index: 1000; }
.nav-member-card { display: flex; align-items: center; gap: 10px; padding: 5px 12px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); border-radius: 50px; cursor: pointer; transition: 0.3s; }
.nav-member-card:hover { border-color: var(--accent); background: rgba(139, 92, 246, 0.1); transform: translateY(-2px); }
.nav-avatar { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--accent); }
.nav-username { font-size: 0.85rem; font-weight: bold; color: #fff; }

#user-dashboard {
    position: absolute; top: 55px; right: 0; width: 320px; background: rgba(15, 23, 42, 0.98); 
    backdrop-filter: blur(25px); border: 1px solid var(--accent); border-radius: 20px; padding: 25px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.8); display: none; flex-direction: column; align-items: center; z-index: 1100;
}
#user-dashboard.active { display: flex; }

.dash-avatar { width: 80px; height: 80px; border-radius: 50%; border: 2px solid var(--accent); margin-bottom: 15px; box-shadow: 0 0 20px var(--accent-glow); }
.dash-name { font-size: 1.4rem; font-weight: bold; margin-bottom: 5px; color: #fff; text-align: center; }
.dash-dates { display: flex; flex-direction: column; gap: 5px; margin-bottom: 20px; font-size: 0.75rem; color: var(--text-muted); font-family: monospace; text-align: center; width: 100%; }
.date-box { background: rgba(255,255,255,0.05); padding: 5px 10px; border-radius: 5px; border: 1px solid rgba(255,255,255,0.05); }
.dash-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; margin-bottom: 20px; }
.stat-item { background: rgba(255,255,255,0.03); padding: 10px; border-radius: 10px; text-align: center; border: 1px solid rgba(255,255,255,0.05); }
.stat-val { display: block; font-weight: bold; color: var(--accent); font-size: 1.1rem; }
.stat-lbl { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.dash-logout { width: 100%; padding: 12px; background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); border-radius: 8px; text-decoration: none; font-size: 0.9rem; font-weight: bold; transition: 0.3s; text-align: center; display: block; }
.dash-logout:hover { background: #ef4444; color: #fff; box-shadow: 0 0 15px rgba(239, 68, 68, 0.4); }

.dash-admin { border-color: #fbbf24 !important; box-shadow: 0 0 30px rgba(251, 191, 36, 0.4) !important; background: linear-gradient(135deg, rgba(15,23,42,0.98), rgba(45,34,10,0.98)) !important; }
.dash-booster { border-color: #f47fff !important; box-shadow: 0 0 30px rgba(244, 127, 255, 0.3) !important; background: linear-gradient(135deg, rgba(15,23,42,0.98), rgba(40,10,45,0.98)) !important; }

/* --- REVIEW HIGHLIGHT (Mächtiges Glühen) --- */
.booster-highlight {
    border: 2px solid #f47fff !important;
    background: linear-gradient(135deg, rgba(244, 127, 255, 0.2), rgba(15, 23, 42, 0.98)) !important;
    box-shadow: 0 0 40px rgba(244, 127, 255, 0.4) !important;
    animation: boosterCardPulse 3s infinite alternate ease-in-out !important;
    position: relative !important;
}
@keyframes boosterCardPulse {
    from { transform: scale(1); box-shadow: 0 0 20px rgba(244, 127, 255, 0.2); border-color: rgba(244, 127, 255, 0.5); }
    to { transform: scale(1.02); box-shadow: 0 0 50px rgba(244, 127, 255, 0.6); border-color: #f47fff; }
}

/* Badge für Review Cards (Oben Rechts - ABSOLUT) */
.booster-badge {
    position: absolute; 
    top: 15px; 
    right: 15px; 
    background: #f47fff; 
    color: #fff; 
    font-size: 0.75rem; 
    font-weight: 900; 
    padding: 5px 12px; 
    border-radius: 6px; 
    z-index: 10;
    box-shadow: 0 0 15px rgba(244, 127, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Badge für LIVE CHAT (Neben dem Namen - INLINE) */
.chat-badge {
    display: inline-block;
    color: #f47fff;
    margin-left: 6px;
    font-size: 0.9rem;
    text-shadow: 0 0 10px #f47fff;
    vertical-align: middle;
}

.booster-textarea { border-color: #f47fff !important; box-shadow: 0 0 15px rgba(244, 127, 255, 0.2); }

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle { display: flex; z-index: 1001; }
    .navlinks { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(5, 6, 11, 0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; transition: 0.4s ease; z-index: 1000; display: flex; gap: 30px; }
    .navlinks.active { right: 0; }
    #user-dashboard { right: -20px; width: 280px; }
}

/* --- CHANGELOG MODAL & STYLES --- */
.changelog-btn-container { position: relative; display: inline-block; }
.changelog-dot {
    position: absolute; top: 0px; right: 0px; width: 10px; height: 10px;
    background: #ef4444; border-radius: 50%; border: 2px solid #05060b;
    box-shadow: 0 0 10px #ef4444; display: none; /* Wird per JS aktiviert */
    animation: pulseNotify 2s infinite;
}
@keyframes pulseNotify { 0% { transform: scale(0.95); opacity: 0.8; } 50% { transform: scale(1.2); opacity: 1; } 100% { transform: scale(0.95); opacity: 0.8; } }

/* Timeline Container */
.cl-timeline { position: relative; padding-left: 30px; border-left: 2px solid rgba(255,255,255,0.1); margin-top: 20px; }
.cl-item { position: relative; margin-bottom: 40px; }
.cl-item::before {
    content: ''; position: absolute; left: -36px; top: 0; width: 10px; height: 10px;
    border-radius: 50%; background: var(--bg-deep); border: 2px solid var(--text-muted);
}
.cl-item.new::before { border-color: var(--accent); background: var(--accent); box-shadow: 0 0 15px var(--accent); }

.cl-date { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 5px; font-family: monospace; }
.cl-badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 0.65rem; font-weight: bold; text-transform: uppercase; margin-right: 8px; }
.badge-update { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.badge-feature { background: rgba(168, 85, 247, 0.2); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }
.badge-fix { background: rgba(34, 197, 94, 0.2); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.3); }

.cl-title { font-family: 'Orbitron'; font-size: 1.1rem; color: #fff; margin-bottom: 10px; }
.cl-content { color: #cbd5e1; font-size: 0.95rem; line-height: 1.6; white-space: pre-line; }

/* Reactions */
.cl-reactions { display: flex; gap: 8px; margin-top: 15px; flex-wrap: wrap; }
.reaction-btn {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted); padding: 4px 10px; border-radius: 20px;
    font-size: 0.85rem; cursor: pointer; transition: 0.2s; display: flex; align-items: center; gap: 5px;
}
.reaction-btn:hover { background: rgba(255,255,255,0.1); }
.reaction-btn.active { border-color: var(--accent); background: rgba(139, 92, 246, 0.15); color: #fff; }

/* BOOSTER REACTION FANCY STYLE */
.reaction-btn.booster-rx {
    border: 1px solid #f47fff; background: rgba(244, 127, 255, 0.1);
    box-shadow: 0 0 10px rgba(244, 127, 255, 0.2); color: #f47fff;
}
.reaction-btn.booster-rx:hover { transform: scale(1.1); box-shadow: 0 0 20px rgba(244, 127, 255, 0.5); }

/* --- CHANGELOG REACTION STYLES --- */

/* Basis Button */
.reaction-btn {
    position: relative; /* Wichtig für Tooltip Position */
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.reaction-btn:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.reaction-btn.active { border-color: var(--accent); background: rgba(139, 92, 246, 0.2); color: #fff; }

/* BOOSTER SPECIAL STYLES */
.reaction-btn.booster-rx {
    border: 1px solid #d946ef; /* Pinker Rand */
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(139, 92, 246, 0.1));
    color: #e879f9;
    box-shadow: 0 0 5px rgba(217, 70, 239, 0.2);
}

/* Booster Animation (Pulsieren) */
.reaction-btn.booster-rx:hover {
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.6);
    animation: boosterPulse 1s infinite alternate;
    color: #fff;
    border-color: #fff;
}

@keyframes boosterPulse {
    0% { transform: scale(1); box-shadow: 0 0 5px rgba(217, 70, 239, 0.4); }
    100% { transform: scale(1.05); box-shadow: 0 0 15px rgba(217, 70, 239, 0.8), 0 0 5px #fff; }
}

/* TOOLTIP (Namen anzeigen) */
.reaction-btn .tooltip-names {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 120%; /* Über dem Button */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--border);
    color: #fff;
    padding: 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 100;
    pointer-events: none; /* Maus ignoriert das */
    transition: 0.2s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    min-width: 100px;
    text-align: center;
}

/* Kleines Dreieck unten am Tooltip */
.reaction-btn .tooltip-names::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0,0,0,0.9) transparent transparent transparent;
}

.reaction-btn:hover .tooltip-names {
    visibility: visible;
    opacity: 1;
    bottom: 130%; /* Leichte Bewegung nach oben */
}

/* Layout für die Sektion */
.goal-poll-wrapper {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 50px;
    align-items: stretch;
}

.goal-poll-wrapper > div, 
.goal-poll-wrapper > section {
    flex: 1; /* Beide Boxen gleich breit */
    margin: 0; /* Alte Margins überschreiben */
}

/* Spezifische Poll-Box Styles */
.poll-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--accent);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
}

.poll-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.poll-title { color: var(--accent); font-family: 'Orbitron'; font-weight: bold; font-size: 1rem; letter-spacing: 1px; }
.poll-count { font-size: 0.75rem; color: var(--text-muted); font-family: monospace; }

.poll-opt-btn {
    width: 100%; padding: 10px 15px; margin-bottom: 8px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    border-radius: 10px; color: #fff; cursor: pointer;
    position: relative; overflow: hidden; transition: 0.3s;
    text-align: left; font-size: 0.85rem;
}

.poll-opt-btn:hover:not(:disabled) { border-color: var(--accent); background: rgba(139, 92, 246, 0.1); }
.poll-opt-btn.active { border-color: #fbbf24; background: rgba(251, 191, 36, 0.05); }

.poll-bar {
    position: absolute; left: 0; top: 0; bottom: 0;
    background: var(--accent); opacity: 0.2;
    transition: width 0.8s ease-out; z-index: 0;
}

.poll-info { position: relative; z-index: 1; display: flex; justify-content: space-between; font-weight: 600; }

/* Mobile Anpassung */
@media (max-width: 900px) {
    .goal-poll-wrapper { flex-direction: column; }
}

/* Design für den neuen Changelog-Typ "goal" */
.log-type.goal {
    background: rgba(251, 191, 36, 0.15); /* Goldener Hintergrund transparent */
    border: 1px solid #fbbf24;            /* Goldener Rand */
    color: #fbbf24;                       /* Goldene Schrift */
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3); /* Leuchten */
    text-transform: uppercase;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Design für Community Goal */
.badge-goal { 
    background: rgba(251, 191, 36, 0.15); 
    border: 1px solid #fbbf24; 
    color: #fbbf24; 
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

/* --- SHOP & EFFEKTE --- */

/* 1. Neon Text Effekte */
.neon-gold { color: #fbbf24 !important; text-shadow: 0 0 10px rgba(251, 191, 36, 0.8), 0 0 20px rgba(251, 191, 36, 0.4); }
.neon-cyan { color: #06b6d4 !important; text-shadow: 0 0 10px rgba(6, 182, 212, 0.8), 0 0 20px rgba(6, 182, 212, 0.4); }
.neon-pink { color: #f47fff !important; text-shadow: 0 0 10px rgba(244, 127, 255, 0.8), 0 0 20px rgba(244, 127, 255, 0.4); }
.neon-red  { color: #ef4444 !important; text-shadow: 0 0 10px rgba(239, 68, 68, 0.8), 0 0 20px rgba(239, 68, 68, 0.4); }

/* 2. Avatar Rahmen Effekte */
.frame-glitch { 
    outline: 2px solid var(--accent); 
    box-shadow: -2px -2px 0 #0ff, 2px 2px 0 #f0f; 
    animation: glitch-anim 2s infinite linear alternate-reverse;
}
.frame-fire { 
    border: 2px solid #ef4444; 
    box-shadow: 0 0 15px #ef4444, inset 0 0 10px #ef4444; 
    animation: pulseRed 1.5s infinite; 
}
.frame-glow { 
    border: 2px solid #22c55e; 
    box-shadow: 0 0 20px #22c55e; 
    animation: pulseGreen 2s infinite; 
}

@keyframes pulseRed { 0% { box-shadow: 0 0 10px #ef4444; } 50% { box-shadow: 0 0 25px #ef4444; } 100% { box-shadow: 0 0 10px #ef4444; } }
@keyframes pulseGreen { 0% { box-shadow: 0 0 10px #22c55e; } 50% { box-shadow: 0 0 25px #22c55e; } 100% { box-shadow: 0 0 10px #22c55e; } }

/* 3. Shop Modal Layout */
.shop-grid-container { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; height: 500px; }
.shop-items-scroll { overflow-y: auto; padding-right: 10px; display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 15px; align-content: start; }

.shop-item-card { 
    background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; padding: 15px; 
    text-align: center; cursor: pointer; transition: 0.2s; position: relative; overflow: hidden;
}
.shop-item-card:hover { border-color: var(--accent); transform: translateY(-3px); background: rgba(139, 92, 246, 0.1); }
.shop-item-card.owned { border-color: #22c55e; }
.shop-item-card.active-item { border-color: #fbbf24; box-shadow: 0 0 15px rgba(251, 191, 36, 0.2); }

.shop-price { font-family: monospace; color: #fbbf24; font-weight: bold; margin-top: 5px; }
.shop-owned-badge { font-size: 0.7rem; color: #22c55e; text-transform: uppercase; font-weight: bold; }

/* Preview Panel */
.shop-preview-panel { 
    background: rgba(0,0,0,0.3); border-radius: 12px; border: 1px solid var(--border); padding: 20px; 
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.preview-title { font-family: 'Orbitron'; color: var(--text-muted); margin-bottom: 20px; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
    .shop-grid-container { grid-template-columns: 1fr; height: auto; }
    .shop-items-scroll { max-height: 300px; }
}

/* Neue Farben */
.neon-lime { color: #a3e635 !important; text-shadow: 0 0 10px rgba(163, 230, 53, 0.6); }
.neon-blue { color: #3b82f6 !important; text-shadow: 0 0 10px rgba(59, 130, 246, 0.6); }
.neon-void { color: #450a0a !important; text-shadow: 0 0 15px #ff0000; animation: void-pulse 3s infinite; }

@keyframes void-pulse {
    0% { text-shadow: 0 0 10px #ff0000; }
    50% { text-shadow: 0 0 25px #7f1d1d, 0 0 5px #fff; }
    100% { text-shadow: 0 0 10px #ff0000; }
}

/* Neue Rahmen */
.frame-simple { border: 2px solid rgba(255,255,255,0.3); }

/* --- ZUSÄTZLICHE FARBEN --- */
.neon-mint { color: #2dd4bf !important; text-shadow: 0 0 10px rgba(45, 212, 191, 0.5); }
.neon-orange { color: #fb923c !important; text-shadow: 0 0 10px rgba(251, 146, 60, 0.5); }
.neon-purple { color: #a855f7 !important; text-shadow: 0 0 10px rgba(168, 85, 247, 0.5); }
.neon-blood { color: #b91c1c !important; text-shadow: 0 0 12px #ef4444; font-weight: 800; }

/* ANIMIERTE FARBEN */
.neon-matrix {
    color: #22c55e !important;
    text-shadow: 0 0 5px #22c55e;
    animation: matrix-flicker 2s infinite;
}
@keyframes matrix-flicker {
    0%, 100% { opacity: 1; text-shadow: 0 0 5px #22c55e; }
    50% { opacity: 0.8; text-shadow: 0 0 15px #22c55e, 0 0 2px #fff; }
}

.neon-chrome {
    background: linear-gradient(90deg, #94a3b8, #f8fafc, #94a3b8, #cbd5e1, #94a3b8);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: chrome-flow 4s linear infinite;
    font-weight: 900;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.5));
}
@keyframes chrome-flow { to { background-position: 200% center; } }

/* --- ZUSÄTZLICHE RAHMEN --- */
.frame-wood { border: 3px solid #78350f; box-shadow: inset 0 0 5px #451a03, 0 0 5px rgba(0,0,0,0.5); }

.frame-cyber { 
    border: 2px solid #06b6d4; 
    box-shadow: 0 0 10px #06b6d4, inset 0 0 5px #06b6d4; 
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}

.frame-magic {
    border: 2px solid #d946ef;
    box-shadow: 0 0 15px #d946ef;
    animation: magic-pulse 2.5s infinite ease-in-out;
}
@keyframes magic-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px #d946ef; }
    50% { transform: scale(1.05); box-shadow: 0 0 25px #d946ef, 0 0 10px #fff; }
}

/* LEGENDÄRE RAHMEN */
.frame-rainbow {
    border: 3px solid transparent;
    background: linear-gradient(#000, #000) padding-box, 
                linear-gradient(90deg, #ff0000, #ffea00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000) border-box;
    background-size: 300% 100%;
    animation: rainbow-border 3s linear infinite;
}
@keyframes rainbow-border { to { background-position: 300% 0; } }

.frame-diamond {
    border: 2px solid #fff;
    box-shadow: 0 0 15px #fff, 0 0 30px #60a5fa, inset 0 0 10px #60a5fa;
    animation: diamond-sparkle 1.5s infinite alternate;
}
@keyframes diamond-sparkle {
    from { filter: brightness(1) contrast(1); }
    to { filter: brightness(1.3) contrast(1.2); transform: rotate(2deg); }
}