

/* Start:/local/templates/department/components/bitrix/news.detail/abiturient-new/style.css?177936609612054*/
 :root {
        --bg-black: #05070a;
        --card-blue: #102a4d;
        --card-border: rgba(0, 180, 255, 0.4);
        --transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
        --shadow-offset: 0;
        --noise-frequency: 0.008;
        --distortion-strength: 60;
        --outer-shadow-blur: 40px;
        --shadow-color: #ffffff;
        --shadow-blur: 15px;
        --shadow-spread: -10px;
        --tint-color: 131, 131, 131;
        --frost-blur: 1px;
    }

    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background:
            radial-gradient(circle at 10% 10%, rgba(0, 174, 239, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 90% 90%, rgba(0, 255, 212, 0.08) 0%, transparent 40%);
        pointer-events: none;
        z-index: -1;
    }

    body {
        background: transparent;
    }

    .main_page .main__content, .main_page .main {
        overflow: visible !important;
    }

    /* DIRECTION HERO SECTION */
    .direction-hero {
        padding: 220px 20px 90px;
        text-align: center;
        position: relative;
    }

    .direction-badge {
        display: inline-block;
        padding: 6px 18px;
        background: rgba(0, 174, 239, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 174, 239, 0.4);
        border-radius: 50px;
        color: #00AEEF;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px !important;
    }

    .direction-code {
        font-size: clamp(1.5rem, 4vw, 2rem);
        font-weight: 900;
        color: rgba(255,255,255,0.4);
        letter-spacing: 5px;
        margin-bottom: 24px !important;
        line-height: 100%;
    }

    .direction-title {
        font-size: clamp(2.5rem, 7vw, 4rem);
        font-weight: 900;
        line-height: 1.2;
        margin: 20px 0 40px !important;
        background: linear-gradient(135deg, #ffffff 0%, #8ecae6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 0 30px rgba(0,174,239,0.3));
    }

    .direction-profile {
        font-size: clamp(1.1rem, 1.8vw, 1.3rem);
        color: rgba(255,255,255,0.7);
        max-width: 800px;
        margin: 0 auto 100px !important;
        line-height: 1.2;
    }

    .direction-meta {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        margin-top: 40px !important;
    }

    .meta-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .meta-value {
        font-size: 1.5rem;
        font-weight: 900;
        color: #00AEEF;
    }

    .meta-label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0px;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 5px !important;
    }

    /* STATS GRID */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        max-width: 1000px;
        margin: 60px auto !important;
    }

    .stat-card {
        background: rgba(255,255,255,0.05);
        border-radius: 20px;
        padding: 18px 28px;
        text-align: center;
        border: 1px solid rgba(255,255,255,0.1);
        transition: 0.3s;
    }

    .stat-card:hover {
        background: rgba(255,255,255,0.1);
        transform: translateY(-5px);
        border-color: rgba(0, 174, 239, 0.3);
    }

    .stat-value {
        font-size: 1.9rem;
        font-weight: 900;
        color: #00AEEF;
        display: block;
        line-height: 120%;
    }

    .apple-bg {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(0, 174, 239, 0.15);
        border-radius: 24px;
    }

    .stat-label {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.7);
    }

    /* EXAMS LIST */
    .exams-list {
        display: flex;
        flex-direction: column;
        gap: 5px;
        max-width: 700px;
        margin: 0 auto !important;
    }

    .exam-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 6px 6px 24px;
        background: rgba(255,255,255,0.05);
        border-radius: 15px;
        border: 1px solid rgba(255,255,255,0.1);
        transition: 0.3s;
    }

    a.exam-item:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(0, 174, 239, 0.3);
    }

    .exam-name {
        font-size: 1.1rem;
        font-weight: 600;
        color: #fff;
		text-align: start;
    }

    .exam-score {
        font-size: 1.2rem;
        font-weight: 700;
        color: #00AEEF;
        background: rgba(0, 174, 239, 0.2);
        padding: 8px 20px;
        border-radius: 50px;
    }

    /* INFO CARDS GRID */
    .info-cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1300px;
        margin: 0 auto !important;
    }

    .info-card {
        background: rgba(16, 42, 77, 0.4);
        border-radius: 30px;
        padding: 40px;
        border: 1px solid rgba(0, 174, 239, 0.2);
        transition: 0.3s;
        text-align: left;
    }

    .info-card:hover {
        background: rgba(0, 174, 239, 0.1);
        border-color: #00AEEF;
        transform: translateY(-5px);
    }

    .info-card-icon {
        font-size: 3rem;
        margin-bottom: 20px !important;
    }

    .info-card-title {
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 20px !important;
        color: #fff;
    }

    .info-card-list {
        list-style: none !important;
        padding: 0;
        margin: 0 !important;
    }

    .info-card-list li {
        //padding: 12px 0;
        padding-left: 30px;
        position: relative;
        color: rgba(255,255,255,0.8);
        font-size: 1rem;
        line-height: 1.5;
    }

    .info-card-list li:before {
        content: '→';
        position: absolute;
        left: 0;
        color: #00AEEF;
        font-weight: 700;
    }

    /* ACTION BUTTONS */
    .action-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 80px !important;
    }

    .btn-primary {
        display: inline-block;
        padding: 18px 40px;
        background: #00AEEF;
        color: #fff;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 100px;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3);
        transition: all 0.3s ease;
        font-size: 18px;
    }

    .btn-primary:hover {
        background: #0099d6;
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 174, 239, 0.4);
        color: #FFF;
    }

    .btn-secondary {
        display: inline-block;
        padding: 18px 40px  !important;
        background: rgba(255,255,255,0.1);
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 100px;
        border: 1px solid rgba(255,255,255,0.2);
        transition: all 0.3s ease;
    }

    .btn-secondary:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-3px);
        color: #FFF;
    }

    /* APPLE SECTION STYLES */
    .apple-section {
        position: relative;
        padding: 100px 20px !important;
        text-align: center;
    }

    .apple-tag {
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: #00AEEF;
        margin-bottom: 20px !important;
        font-weight: 700;
        display: inline-block;
        padding: 6px 18px;
        background: rgba(0, 174, 239, 0.15);
        border: 1px solid rgba(0, 174, 239, 0.3);
        border-radius: 50px;
    }
    .apple-desc li p {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }
    .apple-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 60px !important;
        background: linear-gradient(135deg, #ffffff 0%, #d4f4fa 50%, #00AEEF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
		margin-top: 0 !important;
    }

    .apple-desc {
        font-size: clamp(1.1rem, 1.5vw, 1.2rem);
        max-width: 1200px;
        margin: 0 auto 40px !important;
        line-height: 1.6;
        color: rgba(255,255,255,0.85);
        text-align: left;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .direction-meta {
            flex-direction: column;
            gap: 20px;
        }
        
        .stats-grid {
            grid-template-columns: repeat(1, 1fr);
        }
        
        .info-cards-grid {
            grid-template-columns: 1fr;
        }
        
        .action-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .btn-primary, .btn-secondary {
            width: 100%;
            max-width: 300px;
            text-align: center;
        }
        .main_page .main__content {
            overflow: hidden !important;
        }
        .header__burger_black span, .header__burger_black span:after, .header__burger_black span:before {
            background: #FFF;
        }
        .header__burger_close span span, .header__burger_close span span:after, .header__burger_close span span:before {
            background: #000;
        }
        .header_float #search__submit_desktop svg path, .header_float #search__submit_desktop svg rect, .header_float #visuallyimpaired svg path, .header_float #visuallyimpaired svg rect {
            stroke: #000;
        }
    }

    /* AMBIENT BACKGROUND STYLES */
    .ambient-background {
        position: fixed;
        top: -10px;
        left: 0;
        width: 100vw;
        height: calc(100vh + 20px);
        z-index: -1;
        background: #05070a;
        overflow: hidden;
        pointer-events: none;
    }

    .ambient-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.6;
        animation: ambientFloat 20s infinite ease-in-out alternate;
    }

    .orb-1 {
        top: -10%;
        left: -10%;
        width: 60vw;
        height: 60vw;
        background: radial-gradient(circle, #0066cc 0%, transparent 70%);
        animation-duration: 25s;
    }

    .orb-2 {
        bottom: -20%;
        right: -10%;
        width: 70vw;
        height: 70vw;
        background: radial-gradient(circle, #00AEEF 0%, transparent 70%);
        animation-duration: 30s;
        animation-delay: -5s;
        opacity: 0.5;
    }

    .orb-3 {
        top: 30%;
        left: 40%;
        width: 50vw;
        height: 50vw;
        background: radial-gradient(circle, #5a00e0 0%, transparent 70%);
        animation-duration: 22s;
        animation-delay: -10s;
        opacity: 0.4;
    }

    .ambient-fog {
        position: absolute;
        inset: 0;
        background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iNDAwIj48ZmlsdGVyIGlkPSJnoiPjxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjY1IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI2cpIiBvcGFjaXR5PSIwLjAzIi8+PC9zdmc+');
        opacity: 0.4;
        mix-blend-mode: overlay;
    }

    @keyframes ambientFloat {
        0% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(30px, -20px) scale(1.1); }
        100% { transform: translate(-20px, 30px) scale(0.95); }
    }

    .apple-scroll-container {
        position: relative;
        width: 100%;
        perspective: 1500px;
        padding-bottom: 10vh;
    }
/* End */
/* /local/templates/department/components/bitrix/news.detail/abiturient-new/style.css?177936609612054 */
