.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(0, 0, 0, 0.8) 0%, rgba(10, 5, 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, transparent, #ffa500, #ffb700, #ffa500, transparent);
        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;
    }

    .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.98) 0%, rgba(20, 10, 5, 0.9) 50%, rgba(10, 10, 10, 0.98) 100%);
        border: 3px solid #ffa500;
        border-radius: 2px;
        backdrop-filter: blur(20px);
        padding: 4rem;
        margin-top: 1.5rem;
        position: relative;
        min-height: 80vh;
        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 forwards;
        margin-bottom: 2rem;
        width: 100%;
        opacity: 0;
    }

    .wiki-section.active-section {
        display: flex;
        opacity: 1;
    }

    @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-top: 0;
        margin-bottom: 3.5rem;
        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);
        padding: 2rem 0;
        position: relative;
        letter-spacing: 2.5px;
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
    }

    .wiki-section h2::after {
        content: '';
        flex: 1;
        height: 3px;
        background: linear-gradient(90deg, #ffa500, #ffb700, #ffa500);
        margin-left: 1.5rem;
        box-shadow: 0 0 25px rgba(255, 165, 0, 0.9), 0 0 40px rgba(255, 183, 0, 0.6);
    }

    .wiki-section h2 i {
        font-size: 2.2rem;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        color: #ffb700;
        text-shadow: 0 0 20px rgba(255, 183, 0, 0.9), 0 0 30px rgba(157, 78, 221, 0.5);
        filter: drop-shadow(0 0 12px rgba(255, 183, 0, 0.7));
    }

    .wiki-section:hover h2 i {
        transform: scale(1.4) rotate(35deg);
        color: #ffa500;
        text-shadow: 0 0 30px rgba(255, 165, 0, 1), 0 0 50px rgba(157, 78, 221, 0.6);
    }

    .table-container {
        width: 100%;
        overflow-x: auto;
        margin: 2rem 0 4rem;
        background: linear-gradient(135deg, rgba(20, 10, 0, 0.4) 0%, rgba(30, 15, 5, 0.25) 100%);
        border: 1px solid rgba(255, 165, 0, 0.3);
        border-radius: 4px;
        box-shadow: 0 0 30px rgba(255, 165, 0, 0.15);
    }

    .sanctions-table {
        width: 100%;
        border-collapse: collapse;
        color: #e0e0e0;
        min-width: 700px;
    }

    .sanctions-table th {
        background: rgba(255, 165, 0, 0.15);
        color: #ffb700;
        padding: 1.5rem 1rem;
        text-align: left;
        font-family: 'Orbitron', sans-serif;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        border-bottom: 2px solid #ffa500;
    }

    .sanctions-table td {
        padding: 1.2rem 1rem;
        border-bottom: 1px solid rgba(255, 165, 0, 0.1);
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .sanctions-table tbody tr:hover td {
        background: rgba(255, 165, 0, 0.08);
        color: #ffb700;
        text-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
    }

    .sanctions-table tr:last-child td {
        border-bottom: none;
    }

    .sanctions-table strong {
        color: #ffb700;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .info-alert {
        background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(20, 10, 0, 0.4) 100%);
        border: 1px solid rgba(255, 165, 0, 0.3);
        border-left: 4px solid #ffa500;
        padding: 2rem;
        margin-bottom: 3rem;
        border-radius: 4px;
        box-shadow: 0 0 30px rgba(255, 165, 0, 0.1);
    }

    .info-alert-title {
        color: #ffb700;
        font-family: 'Orbitron', sans-serif;
        font-size: 1.2rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .info-alert-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .info-step {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: rgba(0, 0, 0, 0.3);
        padding: 1rem;
        border-radius: 4px;
        border: 1px solid rgba(255, 165, 0, 0.1);
    }

    .step-num {
        background: #ffa500;
        color: #000;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-weight: 900;
        font-family: 'Orbitron', sans-serif;
        font-size: 0.9rem;
        box-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
    }

    .step-text {
        font-size: 0.9rem;
        line-height: 1.4;
        color: #e0e0e0;
    }

    .info-note {
        margin: 0;
        font-size: 0.85rem;
        color: #aaa;
        border-top: 1px solid rgba(255, 165, 0, 0.1);
        padding-top: 1rem;
    }

    @media (max-width: 768px) {
        .info-alert-grid {
            grid-template-columns: 1fr;
        }
    }

    .accordion {
        width: 100%;
        margin-top: 1rem;
    }

    .accordion-item {
        margin-bottom: 1rem;
        border: 1px solid rgba(255, 165, 0, 0.2);
        border-radius: 8px;
        background: rgba(20, 20, 20, 0.4);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .accordion-header {
        padding: 1.2rem 1.5rem;
        background: rgba(255, 165, 0, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
        user-select: none;
    }

    .accordion-header span {
        font-family: 'Orbitron', sans-serif;
        color: #ffb700;
        font-weight: 700;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .accordion-header span i {
        color: #ffa500;
    }

    .accordion-header:hover {
        background: rgba(255, 165, 0, 0.15);
    }

    .accordion-item.active {
        border-color: #ffb700;
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.15);
    }

    .accordion-item.active .accordion-header {
        background: rgba(255, 165, 0, 0.2);
    }

    .chevron {
        transition: transform 0.3s ease;
        color: #ffa500;
    }

    .accordion-item.active .chevron {
        transform: rotate(180deg);
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
        padding: 0 1.5rem;
        background: rgba(0, 0, 0, 0.2);
    }

    .accordion-item.active .accordion-content {
        max-height: 2000px;
        padding: 1.5rem;
        border-top: 1px solid rgba(255, 165, 0, 0.1);
    }

    .bug-steps {
        margin: 0;
        padding: 0;
        list-style: none;
        color: #ccc;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .bug-steps li {
        position: relative;
        padding-left: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .bug-steps li:last-child {
        margin-bottom: 0;
    }

    .bug-steps li::before {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 0.1rem;
        color: #ffa500;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .bug-body-inner {
            padding: 1rem 1.5rem 1.5rem 3rem;
        }
    }

    @keyframes neon-flicker {

        0%,
        19%,
        21%,
        23%,
        25%,
        54%,
        56%,
        100% {
            opacity: 1;
        }

        20%,
        24%,
        55% {
            opacity: 0.3;
        }
    }

    .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 h3 {
        color: #ffb700;
        margin-top: 2.4rem;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        text-shadow: 0 0 20px rgba(255, 183, 0, 0.8), 0 0 35px rgba(255, 165, 0, 0.3);
        font-weight: 900;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding-left: 1rem;
    }

    .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);
        max-width: 100%;
        text-align: left;
    }

    .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;
        text-align: left;
    }

    .section-content li {
        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);
        filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.4));
    }

    .section-content p {
        margin: 1rem 0;
        color: #d0d0d0;
    }

    .command-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        max-width: 1200px;
        margin: 3.5rem 0;
    }

    .command-item {
        display: grid;
        grid-template-columns: minmax(220px, 280px) 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;
        border-radius: 0;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: 1px solid rgba(255, 165, 0, 0.3);
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 30px rgba(255, 165, 0, 0.2), inset 0 0 20px rgba(255, 165, 0, 0.05);
        align-items: start;
    }

    .command-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.6), transparent);
    }

    .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), 0 0 30px rgba(255, 183, 0, 0.35);
        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 1.5rem;
        border-radius: 0;
        font-family: 'Courier New', monospace;
        color: #ffb700;
        font-weight: bold;
        display: inline-block;
        max-width: 100%;
        border: 1.5px solid rgba(255, 165, 0, 0.6);
        text-shadow: 0 0 15px rgba(255, 183, 0, 0.8);
        white-space: normal;
        word-break: break-word;
        box-shadow: 0 0 12px rgba(255, 165, 0, 0.4);
    }

    .desc {
        color: #e0e0e0;
        font-size: 0.98rem;
        display: flex;
        align-items: center;
        line-height: 1.8;
        text-align: left;
        min-width: 0;
    }

    .jobs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.4rem;
        width: 100%;
        max-width: 1400px;
        margin: 4rem 0;
    }

    .job-card {
        background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(30, 15, 5, 0.85) 100%);
        border: 2.5px solid #ffa500;
        border-radius: 0;
        padding: 2.6rem;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        box-shadow: 0 0 50px rgba(255, 165, 0, 0.5), 0 8px 16px rgba(0, 0, 0, 0.8);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .job-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, rgba(255, 165, 0, 0.4), rgba(255, 183, 0, 0.9), rgba(255, 165, 0, 0.4));
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
        transition: opacity 0.4s ease-out;
    }

    .job-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at var(--px, 50%) var(--py, 50%), rgba(255, 165, 0, 0.15), transparent 60%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease-out;
    }

    .job-card:hover::before {
        opacity: 1;
    }

    .job-card:hover::after {
        opacity: 1;
    }

    .job-card:hover {
        border-color: #ffb700;
        transform: translateY(-20px) scale(1.08);
        box-shadow: 0 0 100px rgba(255, 165, 0, 0.8), inset 0 0 40px rgba(255, 165, 0, 0.15);
        background: linear-gradient(135deg, rgba(30, 15, 0, 1) 0%, rgba(50, 25, 5, 0.95) 100%);
    }

    .job-card h3 {
        margin-top: 0;
        color: #ffb700;
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        gap: 1.1rem;
        text-shadow: 0 0 25px rgba(255, 183, 0, 0.8), 0 0 50px rgba(255, 183, 0, 0.3);
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .job-card h3 i {
        font-size: 1.8rem;
        color: #ffa500;
        transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
        text-shadow: 0 0 20px rgba(255, 165, 0, 0.9);
        filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.6));
    }

    .job-card:hover h3 {
        color: #ffffff;
        text-shadow: 0 0 30px rgba(255, 165, 0, 1), 0 0 60px rgba(157, 78, 221, 0.4);
    }

    .job-card:hover h3 i {
        transform: scale(1.4) rotate(30deg);
        text-shadow: 0 0 30px rgba(255, 165, 0, 1), 0 0 60px rgba(157, 78, 221, 0.6);
        color: #ffb700;
    }

    .job-card p {
        font-size: 0.95rem;
        margin: 1.4rem 0;
        color: #d0d0d0;
        line-height: 1.7;
        font-weight: 500;
    }

    .job-reward {
        display: block;
        color: #ffb700;
        font-weight: 700;
        font-size: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 2px solid rgba(255, 165, 0, 0.4);
        text-shadow: 0 0 20px rgba(255, 183, 0, 0.7);
        letter-spacing: 0.5px;
    }

    .faq-item {
        width: 100%;
        max-width: 1100px;
        margin: 1.6rem auto;
        padding: 2.6rem 3rem;
        border-radius: 0;
        background: linear-gradient(135deg, rgba(20, 10, 0, 0.2) 0%, rgba(30, 15, 5, 0.15) 100%);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        cursor: pointer;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 30px rgba(255, 165, 0, 0.2), inset 0 0 20px rgba(255, 165, 0, 0.05);
    }

    .faq-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.8), transparent);
        opacity: 0;
        transition: opacity 0.3s ease-out;
    }

    .faq-item:hover::before {
        opacity: 1;
    }

    .faq-item:hover {
        border-left-color: #ffb700;
        background: linear-gradient(135deg, rgba(60, 30, 0, 0.35) 0%, rgba(40, 20, 5, 0.25) 100%);
        box-shadow: 0 0 60px rgba(255, 165, 0, 0.5), 0 0 30px rgba(255, 183, 0, 0.3);
        transform: translateX(12px);
    }

    .faq-item h4 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #ffb700;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        text-shadow: 0 0 20px rgba(255, 183, 0, 0.8), 0 0 35px rgba(255, 165, 0, 0.3);
        font-weight: 900;
        letter-spacing: 1.5px;
    }

    .faq-item p {
        margin: 0;
        color: #d8d8d8;
        line-height: 1.8;
        font-size: 0.95rem;
        margin-top: 0.5rem;
        text-align: left;
    }

    .support-methods {
        display: flex;
        flex-direction: column;
        gap: 1.6rem;
        margin-top: 2.5rem;
        align-items: center;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .support-link {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 2rem;
        background: linear-gradient(135deg, rgba(60, 30, 0, 0.25) 0%, rgba(40, 20, 5, 0.2) 100%);
        border: 2.5px solid #ffa500;
        border-radius: 0;
        text-decoration: none;
        color: #ffb700;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        width: fit-content;
        position: relative;
        overflow: hidden;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        box-shadow: 0 0 40px rgba(255, 165, 0, 0.3), inset 0 0 20px rgba(255, 165, 0, 0.08);
    }

    .support-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2.5px;
        background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.8), transparent);
        opacity: 0;
        transition: opacity 0.3s ease-out;
    }

    .support-link::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        background: rgba(255, 165, 0, 0.12);
        transition: width 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    }

    .support-link:hover::before {
        opacity: 1;
    }

    .support-link:hover::after {
        width: 100%;
    }

    .support-link:hover {
        background: linear-gradient(135deg, rgba(150, 75, 0, 0.5) 0%, rgba(60, 30, 5, 0.4) 100%);
        border-color: #ffb700;
        transform: translateX(15px) translateY(-3px);
        box-shadow: 0 0 100px rgba(255, 165, 0, 0.7), 0 0 50px rgba(255, 183, 0, 0.5);
        color: #ffffff;
        text-shadow: 0 0 20px rgba(255, 165, 0, 0.9), 0 0 30px rgba(255, 183, 0, 0.8);
    }

    .support-link i {
        font-size: 1.8rem;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        z-index: 1;
        color: #ffb700;
        text-shadow: 0 0 15px rgba(255, 183, 0, 0.7), 0 0 25px rgba(255, 165, 0, 0.4);
    }

    .support-link:hover i {
        transform: scale(1.4) rotate(15deg);
        filter: drop-shadow(0 0 25px rgba(255, 165, 0, 1)) drop-shadow(0 0 40px rgba(157, 78, 221, 0.9));
    }

    @media (max-width: 1024px) {
        .wiki-container {
            flex-direction: column;
        }

        .wiki-sidebar {
            flex: 1;
            position: static;
            width: 100%;
        }

        .sidebar-nav {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .sidebar-link {
            flex: 0 1 50%;
        }
    }

    @media (max-width: 768px) {
        .wiki-container {
            margin-top: 100px;
            padding: 1rem;
            gap: 1rem;
        }

        .wiki-sidebar {
            width: 100%;
        }

        .sidebar-nav {
            flex-direction: row;
            overflow-x: auto;
        }

        .sidebar-link {
            flex: 0 0 auto;
            white-space: nowrap;
        }

        .command-item {
            grid-template-columns: 1fr;
        }

        .jobs-grid {
            grid-template-columns: 1fr;
        }
    }