

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            padding: 30px 20px;
        }

        .wuhuzuq {
            position: relative;
            width: 85%;
            max-width: 1100px;
            height: 520px;
            background: linear-gradient(160deg, #ffffff 0%, #f0f4ff 100%);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.1);
            padding: 28px;
            margin-bottom: 28px;
        }

        .dapi {
            position: absolute;
            top: 28px;
            left: 28px;
            right: 28px;
            bottom: 28px;
        }

        #pointsCanvas {
            pointer-events: none;
            z-index: 10;
        }

        #chartCanvas {
            z-index: 5;
        }

        .remydu {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
            max-width: 1100px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 16px;
            color: #e8eaf6;
            border: 1px solid rgba(255,255,255,0.12);
        }

        .control-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 78px;
        }

        .control-group input {
            width: 56px;
            padding: 7px;
            border-radius: 10px;
            border: 2px solid rgba(99, 179, 237, 0.4);
            background: rgba(255,255,255,0.15);
            color: #fff;
            text-align: center;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            transition: border-color 0.2s;
        }

        .control-group input:focus {
            outline: none;
            border-color: #63b3ed;
        }






@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ── Контейнер карточек ── */
.sagu {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    padding: 10px 0;
}

/* ── Карточка поста ── */
.satazab.pykyp {
    flex: 0 0 calc(33.333% - 24px);
    box-sizing: border-box;

    background: #ffffff;
    border: 1px solid #e8ecf4;
    padding: 24px 22px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(30, 60, 120, 0.07);

    font-family: 'Inter', sans-serif;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.satazab.pykyp:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 60, 120, 0.13);
}

.satazab .giteq {
    list-style: none;
    margin: 0;
    padding: 0;
}

.satazab h2 {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
    color: #1e2a4a;
    line-height: 1.35;
}

.satazab p,
.satazab span {
    font-size: 14px;
    color: #6b7a99;
    line-height: 1.6;
}

/* ── Категориальная сетка (футер) ── */
.syfoj {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px;
    background: #f4f6fb;
    border-radius: 16px;
}

/* ── Карточка категории ── */
.category-card {
    display: inline-block !important;
    min-width: 110px;
    text-align: center;
    padding: 10px 22px;
    background: #ffffff;
    color: #3a4a6b;
    text-decoration: none;
    border: 2px solid #dce3f5;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(50, 80, 180, 0.06);
    transition: all 0.22s ease;
}

.category-card:hover {
    background: #3d5af1;
    color: #ffffff;
    border-color: #3d5af1;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(61, 90, 241, 0.3);
}

/* ── Футер ── */
.sabeg {
    background: #f4f6fb;
    padding: 48px 24px;
    font-family: 'Inter', sans-serif;
}

.mebag {
    max-width: 1200px;
    margin: 0 auto;
}

.rokyv {
    margin-bottom: 22px;
    font-size: 20px;
    font-weight: 700;
    color: #1e2a4a;
}

/* ── Адаптивность ── */
@media (max-width: 992px) {
    .satazab.pykyp {
        flex: 0 0 calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    .satazab.pykyp {
        flex: 0 0 100%;
    }

    .category-card {
        padding: 9px 16px;
        font-size: 12px;
    }
}






@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ── Контейнер карточек категории ── */
.sagu {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    padding: 10px 0;
}

/* ── Карточка поста в категории ── */
.satazab.pykyp {
    flex: 0 0 calc(33.333% - 24px);
    box-sizing: border-box;

    background: #fafbff;
    border: 1px solid #dde3f5;
    padding: 22px 20px;
    border-radius: 18px;
    box-shadow: 0 3px 12px rgba(40, 60, 140, 0.06);

    font-family: 'Inter', sans-serif;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.satazab.pykyp:hover {
    transform: translateY(-5px);
    border-color: #7b9ef0;
    box-shadow: 0 14px 36px rgba(50, 80, 200, 0.12);
}

.satazab .giteq {
    list-style: none;
    margin: 0;
    padding: 0;
}

.satazab h2 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #1e2a4a;
    line-height: 1.4;
}

.satazab p,
.satazab span {
    font-size: 13.5px;
    color: #7080a0;
    line-height: 1.65;
}

/* ── Адаптивность ── */
@media (max-width: 992px) {
    .satazab.pykyp {
        flex: 0 0 calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    .satazab.pykyp {
        flex: 0 0 100%;
    }
}

