

/* Start:/bitrix/templates/prokhodnoy-ball/styles.css?17715027928017*/
        :root {
            /* Фирменная палитра */
            --nngasu-orange: #FF8241;
            --nngasu-dark: #464646;
            --nngasu-gray: #F2F2F2;
            --nngasu-blue: #647DFF;

            --bg-light: #FAFAFA;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-light);
            color: var(--nngasu-dark);
            line-height: 1.5;
            overflow-x: hidden;
        }

        /* --- ФОН И ДЕКОР --- */
        .bg-shape {
            position: fixed;
            z-index: -1;
            opacity: 0.05;
            pointer-events: none;
        }
        .shape-circle {
            width: 600px; height: 600px;
            border-radius: 50%;
            background: var(--nngasu-orange);
            top: -200px; right: -200px;
        }
        .shape-triangle {
            width: 0; height: 0;
            border-left: 300px solid transparent;
            border-right: 300px solid transparent;
            border-bottom: 500px solid var(--nngasu-blue);
            bottom: -100px; left: -200px;
            transform: rotate(-15deg);
        }

        /* --- HEADER --- */
        header {
            background: var(--nngasu-orange);
            color: white;
            padding: 0.5rem 5%;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 15px rgba(255, 130, 30, 0.2);
        }
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Inter', sans-serif;
            font-weight: 900;
			/* font-size: 1.8rem; */
        }
        .header-title {
            text-align: right;
            font-size: 0.9rem;
            opacity: 0.95;
        }
        .header-title span {
            font-weight: 700;
            font-size: 1.1rem;
            display: block;
        }

        /* --- MAIN LAYOUT --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 5%;
        }

        h2 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            margin: 3rem 0 1.5rem;
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: ''; display: block; width: 50%; height: 4px;
            background: var(--nngasu-orange); margin-top: 5px;
        }

        /* --- ПОИСК --- */
        .search-container {
            margin: 20px auto 40px;
            position: relative;
            /* z-index: 101; */
            padding: 0 5%;
            max-width: 800px;
        }
        .search-input {
            width: 100%;
            padding: 20px 30px;
            border: none;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            outline: none;
            transition: 0.3s;
        }
        .search-input:focus {
            box-shadow: 0 15px 40px rgba(255, 100, 30, 0.2);
        }

        /* --- КАРТОЧКИ (АБИТУРИЕНТУ) --- */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
        }
        .card {
            background: white;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            border-left: 5px solid var(--nngasu-orange);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }
        .card-name {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .card-stats {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }
        .stat-group { display: flex; flex-direction: column; }
        .stat-label { font-size: 0.7rem; text-transform: uppercase; color: #888; font-weight: 600; }
        .stat-value-big {
            font-family: 'Inter', sans-serif; font-weight: 900;
            font-size: 2.5rem; color: var(--nngasu-orange); line-height: 1;
        }
        .score-box {
            text-align: right;
            background: var(--nngasu-gray);
            padding: 10px 15px;
            border-radius: 10px;
        }
        .score-val {
            font-family: 'Inter', sans-serif; font-weight: 700;
            font-size: 1.5rem; color: var(--nngasu-dark);
        }
        .trend {
            font-size: 0.75rem; font-weight: 600; display: block; margin-top: 3px;
        }
        .trend-up { color: #E74C3C; }
        .trend-down { color: #27AE60; }
        .trend-neutral { color: #95A5A6; }

        /* --- АНАЛИТИКА --- */
        .analytics-section {
            /*margin-top: 80px;*/
           /* padding-top: 40px;*/
            border-top: 1px dashed #ddd;
        }
        
        .kpi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .kpi-card {
            background: white; padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            border-top: 4px solid var(--nngasu-blue);
        }
        .kpi-num {
            font-family: 'Inter', sans-serif; font-weight: 700;
            font-size: 2rem; color: var(--nngasu-dark);
        }
        .kpi-text { font-size: 0.85rem; color: #666; margin-top: 5px; }

        .charts-wrapper {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-bottom: 40px;
        }
        .chart-card {
            background: white; padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            width: 100%;
        }
        
        /* Исправление для высоты контейнера графиков */
        .chart-container-inner {
            position: relative;
            height: 610px;
            width: 100%;
            min-height: 400px; /* Принудительная высота */
        }

        .chart-title {
            font-family: 'Inter', sans-serif; font-weight: 600;
            margin-bottom: 20px; font-size: 1.3rem;
            color: var(--nngasu-dark);
        }

        .table-responsive {
            overflow-x: auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }
        table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
        th { background: var(--nngasu-dark); color: white; padding: 15px; text-align: left; font-weight: 600; white-space: nowrap; }
        td { padding: 12px 15px; border-bottom: 1px solid #eee; }
        tr:hover { background: #fff5f0; }

        footer {
            margin-top: 30px; padding: 30px; text-align: center;
            background: var(--nngasu-dark); color: #888; font-size: 0.85rem;
        }

        .logo-svg { width: 40px; height: 40px; }

        @media (max-width: 768px) {
            .kpi-num { font-size: 1.8rem; }
            .search-input { font-size: 1rem; padding: 15px 20px; }
            .chart-container-inner { height: 300px; min-height: 300px; }
        }
/* End */
/* /bitrix/templates/prokhodnoy-ball/styles.css?17715027928017 */
