/* Tema Sistemleri */

/* Varsayılan Tema (Dark Purple) - Zaten mevcut */
.theme-default {
    --primary-color: #a855f7;
    --secondary-color: #fbbf24;
    --bg-primary: #111827;
    --bg-secondary: rgba(17, 24, 39, 0.5);
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
}

/* Açık Tema */
.theme-light {
    --primary-color: #7c3aed;
    --secondary-color: #f59e0b;
    --bg-primary: #f9fafb;
    --bg-secondary: rgba(255, 255, 255, 0.8);
    --text-primary: #111827;
    --text-secondary: #4b5563;
}

.theme-light body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.theme-light .glass {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(124, 58, 237, 0.3);
}

.theme-light .bg-gray-800\/50 {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
}

/* Neon Tema */
.theme-neon {
    --primary-color: #ff00ff;
    --secondary-color: #00ffff;
    --bg-primary: #0a0a0a;
    --bg-secondary: rgba(10, 10, 10, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
}

.theme-neon .neon-purple {
    text-shadow: 0 0 10px #ff00ff,
                 0 0 20px #ff00ff,
                 0 0 30px #ff00ff,
                 0 0 40px #ff00ff;
}

.theme-neon .neon-yellow {
    text-shadow: 0 0 10px #00ffff,
                 0 0 20px #00ffff,
                 0 0 30px #00ffff;
}

/* Kozmik Tema */
.theme-cosmic {
    --primary-color: #6366f1;
    --secondary-color: #ec4899;
    --bg-primary: #0f172a;
    --bg-secondary: rgba(15, 23, 42, 0.8);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
}

.theme-cosmic body {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    background-attachment: fixed;
}

.theme-cosmic .glass {
    background: rgba(30, 27, 75, 0.6);
    border-color: rgba(99, 102, 241, 0.4);
}

/* Tema değiştirme butonu */
.theme-switcher {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(168, 85, 247, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    padding: 8px;
    display: flex;
    gap: 4px;
}

.theme-switcher button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.theme-switcher button.active {
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

.theme-switcher button:hover {
    transform: scale(1.1);
}
