/* Start custom CSS for text-editor, class: .elementor-element-e6fcc7e */h1 {
      color: #333;
      border-bottom: 2px solid #4CAF50;
      padding-bottom: 5px;
    }
        .cyber-container {
            
            margin: 0 auto;
            padding: 30px;
            
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(138, 43, 226, 0.6);
            border: 2px solid #8a2be2;
            color: #fff;
        }
        .cyber-title {
            color: #fff;
            text-align: center;
            font-size: 36px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: 700;
           
        }
        .cyber-important {
            color: #ff4081;
            font-weight: bold;
        }
        .cyber-section {
            margin-bottom: 20px;
            padding: 15px;
            background: #333;
            border-radius: 8px;
            border-left: 5px solid #8a2be2;
            transition: background-color 0.3s ease;
            
        }
        .cyber-section:hover {
            background: #444;
        }
        .cyber-link {
            color: #8a2be2;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }
        .cyber-link:hover {
            color: #ff4081;
            
        }
        .cyber-steps {
            counter-reset: cyber-step-counter;
            list-style-type: none;
            padding: 0;
        }
        .cyber-steps li {
            margin: 10px 0;
            padding: 15px;
            background: #444;
            border-radius: 8px;
            position: relative;
            box-shadow: 0 4px 10px rgba(0, 255, 255, 0.2);
        }
        .cyber-steps li::before {
            counter-increment: cyber-step-counter;
            content: counter(cyber-step-counter);
            position: absolute;
            left: -40px;
            top: 50%;
            transform: translateY(-50%);
            background: #8a2be2;
            color: #fff;
            font-weight: bold;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
        }
        .cyber-steps li:hover {
            background: #555;
        }
        h2 {
            color: #fff;
            font-size: 28px;
            font-weight: 600;
        }
        .button {
            padding: 10px 20px;
            background: #8a2be2;
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .button:hover {
            background: #9b4bdb;
        }
        
        
        
        
        
        
        
        
        
        
        
        /* Стиль заголовка */
        .cyber-title {
            font-size: 48px;
            font-weight: 800;
            color: #8a2be2;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(45deg, #8a2be2, #00bfff);
            -webkit-background-clip: text;
            background-clip: text;
            animation: glow 1.5s ease-in-out infinite alternate;
        }

        /* Эффект свечения для заголовка */
        @keyframes glow {
            0% {
                text-shadow: 0 0 10px #8a2be2, 0 0 20px #8a2be2, 0 0 30px #8a2be2, 0 0 40px #00bfff, 0 0 50px #00bfff, 0 0 75px #00bfff;
            }
            100% {
                text-shadow: 0 0 15px #8a2be2, 0 0 25px #8a2be2, 0 0 35px #8a2be2, 0 0 45px #00bfff, 0 0 60px #00bfff, 0 0 90px #00bfff;
            }
        }/* End custom CSS */