.docs-hero {
        padding: 90px 0 70px 0;
        text-align: center;
        background: radial-gradient(circle at top center, rgba(0, 255, 163, 0.05) 0%, transparent 60%);
    }
    .docs-hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 1rem; color: #fff; }
    .docs-hero p { color: var(--text-muted); max-width: 760px; margin: 0 auto 2rem auto; }

    .search-container { max-width: 600px; margin: 0 auto; position: relative; }
    .search-input {
        width: 100%;
        padding: 1.1rem 1.4rem 1.1rem 3.2rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        color: #fff;
        font-size: 1rem;
        font-family: inherit;
        transition: 0.3s;
        backdrop-filter: blur(5px);
    }
    .search-input:focus {
        outline: none;
        border-color: var(--brand-primary);
        box-shadow: 0 0 20px rgba(0, 255, 163, 0.1);
        background: rgba(0, 0, 0, 0.5);
    }
    .search-icon {
        position: absolute;
        left: 1.1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        pointer-events: none;
    }

    .docs-section { margin: 2.5rem 0 4rem 0; }
    .section-title { text-align: center; margin-bottom: 0.6rem; font-size: 2rem; color: #fff; }
    .section-subtitle { text-align: center; color: var(--text-muted); max-width: 760px; margin: 0 auto 2.2rem auto; }

    .docs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    .doc-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 1.6rem;
        border-radius: 12px;
        transition: 0.3s;
        cursor: pointer;
    }
    .doc-card:hover {
        transform: translateY(-5px);
        border-color: var(--brand-primary);
        background: rgba(18, 22, 31, 0.9);
    }
    .doc-meta { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
    .doc-title { font-size: 1.15rem; color: #fff; margin: 0.5rem 0 0.6rem 0; }
    .doc-desc { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }
    .doc-link { display: inline-block; margin-top: 1rem; color: var(--brand-primary); font-weight: 600; font-size: 0.9rem; text-decoration: none; }

    .tips-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.2rem;
    }
    .tip-card {
        background: #0b0f15;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        padding: 1.4rem;
    }
    .tip-card h4 { margin: 0 0 0.6rem 0; color: #fff; }
    .tip-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

    .info-list {
        max-width: 860px;
        margin: 0 auto;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        overflow: hidden;
    }
    .info-item { padding: 1.2rem 1.4rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .info-item:last-child { border-bottom: none; }
    .info-item h4 { margin: 0 0 0.5rem 0; color: #fff; font-size: 1rem; }
    .info-item p { margin: 0; color: var(--text-muted); font-size: 0.93rem; line-height: 1.6; }

    @media (max-width: 768px) {
        .docs-hero h1 { font-size: 2rem; }
    }
