.wiki-container {
        display: flex;
        gap: 2rem;
        margin-top: 120px;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        padding: 2rem;
        position: relative;
        z-index: 50;
    }

    .wiki-sidebar {
        flex: 0 0 250px;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(20, 10, 0, 0.6) 100%);
        border: 2.5px solid rgba(255, 165, 0, 0.35);
        border-radius: 14px;
        padding: 1.5rem 0;
        backdrop-filter: blur(12px);
        height: fit-content;
        position: sticky;
        top: 120px;
        box-shadow: 0 8px 32px rgba(255, 165, 0, 0.12), inset 0 0 20px rgba(255, 165, 0, 0.02);
    }

    .sidebar-header {
        padding: 0 1.5rem 1.5rem;
        border-bottom: 2px solid rgba(255, 165, 0, 0.4);
    }

    .sidebar-header h3 {
        margin: 0;
        color: #ffb700;
        font-family: 'Orbitron', sans-serif;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-shadow: 0 0 15px rgba(255, 183, 0, 0.7);
        text-transform: uppercase;
        font-weight: 800;
    }

    .sidebar-nav {
        display: flex;
        flex-direction: column;
    }

    .sidebar-link {
        padding: 1.3rem 1.8rem;
        color: #e0e0e0;
        text-decoration: none;
        transition: all 0.3s ease-out;
        border-left: 3px solid transparent;
        display: flex;
        align-items: center;
        gap: 1.2rem;
        font-size: 0.95rem;
    }

    .sidebar-link i {
        color: #ffa500;
        font-size: 1.1rem;
        transition: all 0.3s ease-out;
    }

    .sidebar-link:hover {
        background: rgba(255, 165, 0, 0.15);
        border-left-color: #ffb700;
        color: #ffb700;
    }

    .sidebar-link.active {
        background: rgba(255, 165, 0, 0.2);
        border-left-color: #ffb700;
        color: #ffb700;
        text-shadow: 0 0 12px rgba(255, 165, 0, 0.6);
    }

    .wiki-content {
        flex: 1;
        min-width: 0;
    }

    .wiki-header {
        margin-bottom: 2rem;
        margin-top: -3rem;
        padding: 2.5rem;
        text-align: center;
        border-bottom: 3px solid #ffa500;
        position: relative;
        background: linear-gradient(135deg, rgba(30, 15, 0, 0.2) 0%, rgba(40, 20, 5, 0.2) 100%);
        border-radius: 0;
        box-shadow: 0 0 80px rgba(255, 165, 0, 0.3), inset 0 0 40px rgba(255, 165, 0, 0.08);
    }

    .wiki-header::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #ffa500, #ffb700, #ffa500);
        box-shadow: 0 0 30px rgba(255, 165, 0, 1), 0 0 50px rgba(255, 183, 0, 0.7);
    }

    .wiki-header .page-title {
        font-size: 3rem;
        font-weight: 900;
        color: #ffb700;
        text-shadow: 0 0 30px rgba(255, 183, 0, 0.9), 0 0 50px rgba(255, 165, 0, 0.4), 0 8px 20px rgba(0, 0, 0, 0.8);
        margin: 0 0 0.8rem 0;
        letter-spacing: 3px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    .wiki-header .page-title::before,
    .wiki-header .page-title::after {
        content: '';
        flex: 1;
        height: 4px;
        background: linear-gradient(90deg, #ffa500, #ffb700, #ffa500);
        box-shadow: 0 0 25px rgba(255, 165, 0, 0.9), 0 0 40px rgba(255, 183, 0, 0.6);
    }

    .wiki-header .page-desc {
        font-size: 1.1rem;
        color: #d0d0d0;
        margin: 0;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    }

    .wiki-sections {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(20, 10, 5, 0.8) 50%, rgba(10, 10, 10, 0.9) 100%);
        border: 3px solid #ffa500;
        border-radius: 2px;
        backdrop-filter: blur(20px);
        padding: 4rem;
        overflow: hidden;
        margin-top: 1.5rem;
        position: relative;
        box-shadow: 0 0 80px rgba(255, 165, 0, 0.6), inset 0 0 60px rgba(255, 165, 0, 0.1);
    }

    .wiki-sections::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ffa500, #ffb700, #ffa500, transparent);
        box-shadow: 0 0 40px rgba(255, 165, 0, 0.9), 0 0 60px rgba(255, 183, 0, 0.7);
    }

    .wiki-section {
        display: none;
        flex-direction: column;
        align-items: center;
        animation: fadeInUp 0.5s ease-out;
        margin-bottom: 4rem;
        width: 100%;
    }

    .wiki-section.active-section {
        display: flex;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .wiki-section h2 {
        color: #ffb700;
        font-family: 'Orbitron', sans-serif;
        font-size: 2.4rem;
        margin: -4rem -4rem 3.5rem -4rem;
        padding: 2.5rem 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        text-shadow: 0 0 25px rgba(255, 183, 0, 0.9), 0 8px 16px rgba(0, 0, 0, 0.9);
        position: relative;
        letter-spacing: 2.5px;
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        background: linear-gradient(90deg, rgba(255, 165, 0, 0.05), rgba(255, 165, 0, 0.08), rgba(255, 165, 0, 0.05));
        border-bottom: 2px solid rgba(255, 165, 0, 0.3);
    }

    .wiki-section h2::before,
    .wiki-section h2::after {
        content: '';
        flex: 1;
        height: 3px;
        background: linear-gradient(90deg, #ffa500, #ffb700, #ffa500);
        box-shadow: 0 0 25px rgba(255, 165, 0, 0.9), 0 0 40px rgba(255, 183, 0, 0.6);
    }

    .wiki-section h2::before {
        margin-right: 1.5rem;
    }

    .wiki-section h2::after {
        margin-left: 1.5rem;
    }

    .section-content {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        color: #e0e0e0;
        line-height: 1.8;
        text-align: left;
    }

    .section-content ul,
    .section-content ol {
        margin: 2rem 0;
        padding: 2rem 2rem 2rem 3rem;
        background: linear-gradient(135deg, rgba(30, 15, 0, 0.2) 0%, rgba(40, 20, 5, 0.15) 100%);
        border-radius: 0;
        border-left: 5px solid #ffa500;
        box-shadow: 0 0 40px rgba(255, 165, 0, 0.2), inset 0 0 30px rgba(255, 165, 0, 0.08);
    }

    .section-content ul li,
    .section-content ol li {
        margin: 1.4rem 0;
        color: #e0e0e0;
        font-weight: 500;
        line-height: 1.8;
        padding-left: 0.5rem;
        transition: all 0.3s ease-out;
    }

    .section-content li:hover {
        color: #ffb700;
        margin-left: 1rem;
        text-shadow: 0 0 20px rgba(255, 165, 0, 0.8), 0 0 30px rgba(255, 183, 0, 0.5);
    }

    .section-content p {
        margin: 1rem 0;
        color: #d0d0d0;
    }

    .command-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        margin: 3.5rem 0;
    }

    .command-item {
        display: grid;
        grid-template-columns: minmax(120px, 180px) 1fr;
        gap: 2.2rem;
        padding: 2rem;
        background: linear-gradient(135deg, rgba(20, 10, 0, 0.4) 0%, rgba(30, 15, 5, 0.25) 100%);
        border-left: 5px solid #ffa500;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        border-top: 1px solid rgba(255, 165, 0, 0.3);
        border-right: 1px solid rgba(255, 165, 0, 0.3);
        border-bottom: 1px solid rgba(255, 165, 0, 0.3);
        box-shadow: 0 0 30px rgba(255, 165, 0, 0.2);
        align-items: center;
    }

    .command-item:hover {
        background: linear-gradient(135deg, rgba(100, 50, 0, 0.4) 0%, rgba(50, 25, 5, 0.35) 100%);
        border-left-color: #ffb700;
        box-shadow: 0 0 60px rgba(255, 165, 0, 0.5);
        transform: translateX(12px) translateY(-4px);
    }

    .cmd {
        background: linear-gradient(135deg, rgba(20, 10, 0, 1) 0%, rgba(40, 0, 20, 0.9) 100%);
        padding: 1rem;
        font-family: 'Courier New', monospace;
        color: #ffb700;
        font-weight: bold;
        text-align: center;
        border: 1.5px solid rgba(255, 165, 0, 0.6);
        box-shadow: 0 0 12px rgba(255, 165, 0, 0.4);
        font-size: 1.3rem;
    }

    .desc {
        color: #e0e0e0;
        font-size: 1rem;
    }

    @media (max-width: 1024px) {
        .wiki-container {
            flex-direction: column;
        }

        .wiki-sidebar {
            flex: 1;
            width: 100%;
            position: relative;
            top: auto;
        }

        .sidebar-nav {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .sidebar-link {
            flex: 1;
            min-width: 140px;
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .command-item {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }