/* WIKI SECTION STYLES - Tema uyumlu */
        .wiki-section {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .wiki-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent, #f59e0b), transparent);
        }
        
        .wiki-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .wiki-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .wiki-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
        }
        
        .wiki-subtitle {
            color: #94a3b8;
            font-size: 1rem;
            letter-spacing: 2px;
        }
        
        /* WIKI GRID - Yan yana tablo düzeni */
        .wiki-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }
        
        @media (max-width: 1200px) {
            .wiki-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .wiki-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            .wiki-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .wiki-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* WIKI CARDS */
        .wiki-card {
            background: rgba(30, 41, 59, 0.6);
            border: 1px solid rgba(148, 163, 184, 0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .wiki-card:hover {
            transform: translateY(-5px);
            border-color: rgba(245, 158, 11, 0.3);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(245, 158, 11, 0.1);
        }
        
        .wiki-card-header {
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
            border-bottom: 1px solid rgba(245, 158, 11, 0.2);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .wiki-card-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        }
        
        .wiki-card-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: #f59e0b;
            margin: 0;
            letter-spacing: 1px;
        }
        
        .wiki-card-body {
            padding: 1rem;
        }
        
        .wiki-item {
            display: flex;
            align-items: center;
            padding: 0.75rem;
            margin-bottom: 0.5rem;
            background: rgba(15, 23, 42, 0.4);
            border-radius: 8px;
            border-left: 3px solid transparent;
            transition: all 0.2s ease;
            cursor: pointer;
            text-decoration: none;
        }
        
        .wiki-item:last-child {
            margin-bottom: 0;
        }
        
        .wiki-item:hover {
            background: rgba(245, 158, 11, 0.1);
            border-left-color: #f59e0b;
            transform: translateX(5px);
        }
        
        .wiki-item-text {
            flex: 1;
        }
        
        .wiki-item-name {
            color: #e2e8f0;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
            display: block;
        }
        
        .wiki-item-desc {
            color: #64748b;
            font-size: 0.75rem;
            display: block;
            line-height: 1.3;
        }
        
        .wiki-item-arrow {
            color: #475569;
            font-size: 0.8rem;
            transition: all 0.2s ease;
        }
        
        .wiki-item:hover .wiki-item-arrow {
            color: #f59e0b;
            transform: translateX(3px);
        }
        
        /* Dark theme adjustments */
        [data-theme="dark"] .wiki-section {
            background: linear-gradient(135deg, rgba(2, 6, 23, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%);
        }
        
        [data-theme="dark"] .wiki-card {
            background: rgba(30, 41, 59, 0.8);
        }
        
        /* Saul Character - Wiki mascot */
        .wiki-mascot {
            position: absolute;
            right: 2rem;
            bottom: 0;
            width: 150px;
            opacity: 0.1;
            pointer-events: none;
        }
        
        @media (max-width: 768px) {
            .wiki-mascot {
                display: none;
            }
        }