.documentation {
            flex: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .documentation__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 960px) {
            .documentation__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .documentation-card {
            display: block;
            border-radius: 1rem;
            border: 1px solid rgba(88, 0, 145, 0.3);
            /*background: linear-gradient(135deg, rgba(10, 0, 20, 0.8) 0%, rgba(26, 0, 48, 0.8) 100%);*/
            background: linear-gradient(135deg, rgba(10, 0, 20, 0.9) 0%, rgba(26, 0, 48, 0.9) 100%);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            text-decoration: none!important;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(88, 0, 145, 0.15);
        }

        .documentation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(88, 0, 145, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .documentation-card:hover {
            border-color: rgba(88, 0, 145, 0.5);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(88, 0, 145, 0.3);
            background: linear-gradient(135deg, rgba(10, 0, 20, 0.9) 0%, rgba(26, 0, 48, 0.9) 100%);
        }

        .documentation-card:hover::before {
            opacity: 1;
        }

        .documentation-card__header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
            gap: 1rem;
        }

        .documentation-card__title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .documentation-card:hover .documentation-card__title {
            color: #e9d5ff;
        }

        .documentation-card__icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            opacity: 0.7;
            transition: all 0.3s ease;
            color: #ffffff;
            stroke: currentColor;
        }

        .documentation-card:hover .documentation-card__icon {
            opacity: 1;
            transform: translateX(3px) translateY(-3px);
            color: #e9d5ff;
        }

        .documentation-card__content {
            color: #d1d5db;
            font-size: 0.875rem;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .documentation-card:hover .documentation-card__content {
            color: #f3f4f6;
        }

        @media (min-width: 640px) {
            .documentation-card__content {
                font-size: 1rem;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .documentation-card {
            animation: fadeInUp 0.6s ease-out backwards;
        }

        .documentation-card:nth-child(1) { animation-delay: 0.1s; }
        .documentation-card:nth-child(2) { animation-delay: 0.2s; }
        .documentation-card:nth-child(3) { animation-delay: 0.3s; }
        .documentation-card:nth-child(4) { animation-delay: 0.4s; }
        .documentation-card:nth-child(5) { animation-delay: 0.5s; }