:root {
            --primary: #8e44ad;
            --primary-light: #b376d1;
            --primary-dark: #6a3093;
            --dark: #0a0a0a;
            --darker: #050505;
            --light: #f5f5f5;
            --accent: #fd79a8;
            --text: #e0e0e0;
            --text-secondary: #b0b0b0;
            --neon: 0 0 10px rgba(142, 68, 173, 0.7), 0 0 20px rgba(142, 68, 173, 0.4);
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            --success: #27ae60;
            --warning: #f39c12;
            --error: #e74c3c;
            --info: #3498db;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Unbounded', sans-serif;
            color: var(--text);
            background-color: var(--dark);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            line-height: 1.6;
        }
        
        /* Глобальные анимации */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideIn {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        @keyframes neonGlow {
            0%, 100% { box-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary); }
            50% { box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary); }
        }
        
        @keyframes slideInRight {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes slideOutRight {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(100%); opacity: 0; }
        }
        
        /* Фоновые эффекты */
        .background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: 
                radial-gradient(circle at 20% 30%, rgba(142, 68, 173, 0.1), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(253, 121, 168, 0.05), transparent 40%),
                var(--dark);
        }
        
        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(rgba(142, 68, 173, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(142, 68, 173, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: -1;
            opacity: 0.3;
        }
        
        /* Навигация */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            background: rgba(10, 10, 10, 0.95);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 50px;
            z-index: 1000;
            border-bottom: 1px solid rgba(142, 68, 173, 0.2);
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }
        
        .navbar.scrolled {
            height: 70px;
            background: rgba(5, 5, 5, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }
        
        .logo img {
            width: 40px;
            height: 40px;
            transition: transform 0.5s;         
        }
        
        .logo:hover img {
            transform: rotate(15deg) scale(1.1);
            animation: none;
        }
        
        .logo-text {
            font-weight: 700;
            font-size: 1.6rem;
            background: linear-gradient(to right, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
            position: relative;
        }
        
        .logo-text::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, var(--primary), var(--primary-light));
            transition: width 0.5s;
        }
        
        .logo:hover .logo-text::after {
            width: 100%;
        }
        
        /* Бургер меню */
        .menu-toggle {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 1000;
            position: relative;
        }
        
        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background: linear-gradient(to right, var(--primary), var(--primary-light));
            border-radius: 3px;
            transition: var(--transition);
        }
        
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background: var(--accent);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
            background: var(--accent);
        }
        
        /* Мобильное меню */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;         
            height: 100vh;
            background: rgba(5, 5, 5, 0.98);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            backdrop-filter: blur(15px);
            border-left: 1px solid rgba(142, 68, 173, 0.3);
            overflow-y: auto;
            padding: 90px 0;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            margin: 15px 0;
            padding: 10px 30px;
            position: relative;
            transition: var(--transition);
            font-weight: 500;
            text-align: center;
            opacity: 0;
            transform: translateX(50px);
        }
        
        .mobile-menu.active a {
            opacity: 1;
            transform: translateX(0);
            transition: var(--transition);
        }
        
        .mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu a:nth-child(2) { transition-delay: 0.2s; }
        .mobile-menu a:nth-child(3) { transition-delay: 0.3s; }
        .mobile-menu a:nth-child(4) { transition-delay: 0.4s; }
        .mobile-menu a:nth-child(5) { transition-delay: 0.5s; }
        .mobile-menu a:nth-child(6) { transition-delay: 0.6s; }
        
        .mobile-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.4s;
        }
        
        .mobile-menu a:hover {
            color: var(--accent);
        }
        
        .mobile-menu a:hover::before {
            width: 100%;
        }
        
        .admin-btn {
            background: linear-gradient(45deg, var(--primary-dark), var(--primary));
            border-radius: 10px;
            margin-top: 20px;
            padding: 12px 25px;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(142, 68, 173, 0.4);
        }
        
        .admin-btn:hover {
            background: linear-gradient(45deg, var(--primary), var(--primary-light));
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(142, 68, 173, 0.6);
        }
        
        /* Герой-секция */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 0 20px;
        }
        
        .hero-content {
            max-width: 1200px;
            width: 100%;
            padding: 0 40px;
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        h1 {
            font-size: 5.5rem;
            margin-bottom: 30px;
            background: linear-gradient(to right, white, var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: var(--neon);
            letter-spacing: -2px;
            line-height: 1.1;
            font-weight: 900;
            opacity: 0;
            transform: translateY(50px);
            animation: slideIn 1s 0.3s forwards;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            animation: slideIn 1s 0.6s forwards;
            font-weight: 400;
        }
        
        .btn-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 40px;
            background: linear-gradient(45deg, var(--primary-dark), var(--primary));
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(142, 68, 173, 0.4);
            position: relative;
            overflow: hidden;
            letter-spacing: 1px;
            opacity: 0;
            transform: translateY(30px);
            animation: slideIn 1s 0.9s forwards;
            min-width: 200px;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            box-shadow: none;
        }
        
        .btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(142, 68, 173, 0.6);
        }
        
        .btn-outline:hover {
            background: rgba(142, 68, 173, 0.1);
            color: white;
        }
        
        .btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.6s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        /* Секции */
        .section {
            padding: 120px 40px;
            position: relative;
        }
        
        .section-title-container {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }
        
        .section-title {
            font-size: 3rem;
            display: inline-block;
            position: relative;
            font-weight: 700;
            color: white;
            opacity: 0;
            transform: translateY(50px);
            transition: var(--transition);
        }
        
        .section-title.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 2px;
        }
        
        /* Карточки */
        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .card {
            background: rgba(20, 20, 20, 0.7);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
            transition: var(--transition);
        }
        
        .card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .card:nth-child(1) { transition-delay: 0.1s; }
        .card:nth-child(2) { transition-delay: 0.2s; }
        .card:nth-child(3) { transition-delay: 0.3s; }
        .card:nth-child(4) { transition-delay: 0.4s; }
        
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 0%, rgba(142, 68, 173, 0.1), transparent 70%);
            z-index: 1;
        }
        
        .card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
            border-color: rgba(142, 68, 173, 0.3);
        }
        
        .card-content {
            position: relative;
            z-index: 20;
        }
        
        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .card-title {
            font-size: 2rem;
            margin-bottom: 20px;
            color: white;
            font-weight: 700;
        }
        
        .card-description {
            font-size: 1.1rem;
            margin-bottom: 30px;
            line-height: 1.7;
            color: var(--text-secondary);
            font-weight: 400;
        }
        
        .card-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            position: relative;
            z-index: 30;
        }
        
        .card-btn {
            display: flex;
            align-items: center;
            padding: 15px 25px;
            background: rgba(142, 68, 173, 0.15);
            border-radius: 10px;
            transition: var(--transition);
            text-decoration: none;
            color: white;
            border: 1px solid rgba(142, 68, 173, 0.3);
            font-weight: 500;
            position: relative;
            z-index: 40;
            font-size: 0.95rem;
        }
        
        .card-btn:hover {
            background: rgba(142, 68, 173, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(142, 68, 173, 0.3);
        }
        
        .card-btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* Форма заказа */
        .form {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }
        
        .form label {
            display: block;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .form label:nth-child(5),
        .form label:nth-child(6),
        .form label:nth-child(7) {
            grid-column: 1 / -1;
        }
        
        .form input,
        .form select,
        .form textarea {
            width: 100%;
            padding: 15px;
            background: rgba(30, 30, 30, 0.7);
            border: 1px solid rgba(142, 68, 173, 0.3);
            border-radius: 10px;
            color: white;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
            margin-top: 8px;
        }
        
        .form input:focus,
        .form select:focus,
        .form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 10px rgba(142, 68, 173, 0.5);
        }
        
        .form textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form button {
            grid-column: 1 / -1;
            justify-self: center;
            margin-top: 20px;
        }
        
        .muted {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 20px;
            text-align: center;
        }
        
        /* Секция навыков */
        .skill-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .skill {
            background: rgba(20, 20, 20, 0.7);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(50px);
            transition: var(--transition);
        }
        
        .skill.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .skill:hover {
            transform: translateY(-5px);
            border-color: rgba(142, 68, 173, 0.3);
        }
        
        .skill strong {
            display: block;
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: white;
        }
        
        .skill span {
            color: var(--text-secondary);
            font-size: 1rem;
        }
        
        /* Секция проектов */
        .project-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .project {
            background: rgba(20, 20, 20, 0.7);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(50px);
            transition: var(--transition);
        }
        
        .project.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .project:hover {
            transform: translateY(-5px);
            border-color: rgba(142, 68, 173, 0.3);
        }
        
        .project h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .project p {
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        
        .project .link {
            color: var(--primary-light);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .project .link:hover {
            color: var(--accent);
        }
        
        /* Футер */
        .footer {
            padding: 80px 40px 40px;
            background: linear-gradient(to top, var(--darker), var(--dark));
            position: relative;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            width: 50px;
            height: 50px;
        }
        
        .footer-logo-text {
            font-weight: 700;
            font-size: 1.8rem;
            background: linear-gradient(to right, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }
        
        .footer-link:hover {
            color: var(--primary-light);
        }
        
        .logo-img {
            width: 36px;
            height: 36px;
            margin-right: 12px;
        }
        
        .footer-social {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(142, 68, 173, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            font-size: 1.5rem;
            transition: var(--transition);
            border: 1px solid rgba(142, 68, 173, 0.2);
        }
        
        .social-icon:hover {
            background: rgba(142, 68, 173, 0.2);
            color: var(--primary-light);
            transform: translateY(-5px);
        }
        
        .footer-info {
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        .footer-copyright {
            margin-bottom: 10px;
        }
        
        /* Эффекты при наведении */
        .hover-scale {
            transition: var(--transition);
        }
        
        .hover-scale:hover {
            transform: scale(1.05);
        }
        
        /* Анимации при скролле */
        [data-animate] {
            opacity: 0;
            transform: translateY(50px);
            transition: var(--transition);
        }
        
        [data-animate].animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Уведомления */
        .notifications {
            position: fixed;
            top: 100px;
            right: 20px;
            z-index: 10000;
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 400px;
        }
        
        .notification {
            background: rgba(20, 20, 20, 0.95);
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border-left: 5px solid var(--primary);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: slideInRight 0.3s ease-out forwards;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 400px;
            transition: var(--transition);
        }
        
        .notification.hiding {
            animation: slideOutRight 0.3s ease-out forwards;
        }
        
        .notification.success {
            border-left-color: var(--success);
        }
        
        .notification.warning {
            border-left-color: var(--warning);
        }
        
        .notification.error {
            border-left-color: var(--error);
        }
        
        .notification.info {
            border-left-color: var(--info);
        }
        
        .notification-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .notification.success .notification-icon {
            background: rgba(39, 174, 96, 0.2);
            color: var(--success);
        }
        
        .notification.warning .notification-icon {
            background: rgba(243, 156, 18, 0.2);
            color: var(--warning);
        }
        
        .notification.error .notification-icon {
            background: rgba(231, 76, 60, 0.2);
            color: var(--error);
        }
        
        .notification.info .notification-icon {
            background: rgba(52, 152, 219, 0.2);
            color: var(--info);
        }
        
        .notification-content {
            flex: 1;
        }
        
        .notification-title {
            font-weight: 600;
            margin-bottom: 5px;
            color: white;
        }
        
        .notification-message {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        .notification-close {
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
            padding: 5px;
            border-radius: 5px;
            flex-shrink: 0;
        }
        
        .notification-close:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* Бейдж уведомлений */
        .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            animation: pulse 2s infinite;
        }
        
        /* Чат поддержки */
        .support-chat {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }
        
        .chat-toggle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-dark), var(--primary));
            color: white;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(142, 68, 173, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: var(--transition);
            position: relative;
        }
        
        .chat-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(142, 68, 173, 0.6);
        }
        
        .chat-window {
            position: absolute;
            bottom: 70px;
            right: 0;
            width: 350px;
            height: 500px;
            background: rgba(20, 20, 20, 0.95);
            border-radius: 15px;
            border: 1px solid rgba(142, 68, 173, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            display: none;
            flex-direction: column;
            backdrop-filter: blur(15px);
            overflow: hidden;
        }
        
        .chat-window.active {
            display: flex;
            animation: slideIn 0.3s ease-out;
        }
        
        .chat-header {
            padding: 20px;
            background: rgba(142, 68, 173, 0.1);
            border-bottom: 1px solid rgba(142, 68, 173, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .chat-title {
            font-weight: 600;
            color: white;
        }
        
        .chat-close {
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        
        .chat-close:hover {
            color: white;
        }
        
        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .message {
            max-width: 80%;
            padding: 12px 15px;
            border-radius: 15px;
            line-height: 1.4;
            position: relative;
            word-wrap: break-word;
        }
        
        .message.admin {
            align-self: flex-start;
            background: rgba(142, 68, 173, 0.2);
            border-bottom-left-radius: 5px;
        }
        
        .message.user {
            align-self: flex-end;
            background: rgba(253, 121, 168, 0.2);
            border-bottom-right-radius: 5px;
        }
        
        .message.system {
            align-self: center;
            background: rgba(243, 156, 18, 0.2);
            color: var(--warning);
            font-style: italic;
            max-width: 90%;
            text-align: center;
            font-size: 0.9rem;
        }
        
        .message-time {
            font-size: 0.7rem;
            color: var(--text-secondary);
            margin-top: 5px;
            text-align: right;
        }
        
        .chat-input {
            padding: 15px;
            border-top: 1px solid rgba(142, 68, 173, 0.3);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .chat-input-row {
            display: flex;
            gap: 10px;
        }
        
        .chat-input input {
            flex: 1;
            padding: 12px;
            background: rgba(30, 30, 30, 0.7);
            border: 1px solid rgba(142, 68, 173, 0.3);
            border-radius: 25px;
            color: white;
            font-family: inherit;
        }
        
        .chat-input button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .chat-input button:hover {
            background: var(--primary-light);
        }
        
        .emoji-picker {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .emoji-btn {
            background: rgba(142, 68, 173, 0.2);
            border: 1px solid rgba(142, 68, 173, 0.3);
            border-radius: 8px;
            padding: 5px 10px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.2rem;
        }
        
        .emoji-btn:hover {
            background: rgba(142, 68, 173, 0.4);
            transform: scale(1.1);
        }
        
        .no-messages {
            text-align: center;
            color: var(--text-secondary);
            padding: 40px 20px;
        }
        
        .chat-order-info {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-top: 5px;
        }

        .is-hidden {
            display: none;
        }

        .no-messages-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            opacity: 0.5;
        }

        .footer-logo-img {
            width: 40px;
            height: 40px;
        }

        body.home-page .hero {
            min-height: 100vh;
            padding-top: 120px;
            padding-bottom: 80px;
        }

        body.home-page .hero-content {
            min-height: calc(100vh - 200px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        /* Адаптивность */
        @media (max-width: 1200px) {
            h1 { font-size: 4.5rem; }
        }
        
        @media (max-width: 992px) {
            h1 { font-size: 3.8rem; }
            .hero-subtitle { font-size: 1.3rem; }
            .section { padding: 100px 30px; }
            .section-title { font-size: 2.5rem; }
            .card { padding: 30px; }
            .form { grid-template-columns: 1fr; }
            .notifications {
                right: 15px;
                left: 15px;
                max-width: none;
            }
        }
        
        @media (max-width: 768px) {
            .navbar { padding: 0 25px; height: 80px; }
            .navbar.scrolled { height: 60px; }
            
            h1 { font-size: 3rem; }
            .hero-subtitle { font-size: 1.1rem; }
            .btn { padding: 16px 30px; font-size: 1rem; min-width: 160px; }
            
            .section { padding: 80px 20px; }
            .section-title { font-size: 2.2rem; }
            
            .cards-container,
            .skill-grid,
            .project-list {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                gap: 20px;
            }
            
            .notification {
                padding: 15px;
            }
            
            .support-chat {
                bottom: 20px;
                right: 20px;
            }
            
            .chat-window {
                width: calc(100vw - 40px);
                height: 400px;
                right: -10px;
            }

            body.home-page .hero {
                padding-top: 95px;
                padding-bottom: 70px;
            }

            body.home-page .hero-content {
                min-height: calc(100vh - 165px);
            }
        }
        
        @media (max-width: 576px) {
            h1 { font-size: 2.5rem; }
            .hero-subtitle { font-size: 1rem; }
            
            .section { padding: 60px 15px; }
            .section-title { font-size: 2rem; }
            
            .card {
                padding: 25px;
            }
            
            .card-title {
                font-size: 1.8rem;
            }
            
            .footer {
                padding: 60px 20px 30px;
            }
            
            .footer-logo-text {
                font-size: 1.5rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            
            .notifications {
                top: 80px;
                right: 10px;
                left: 10px;
            }
        }

