.elementor-7964 .elementor-element.elementor-element-096a25f{--display:flex;}.elementor-7964 .elementor-element.elementor-element-096a25f.e-con{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-7964 .elementor-element.elementor-element-096a25f{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-fe0709c *//* Cyber Security Theme */
        :root {
            --matrix-green: #00ff41;
            --cyber-blue: #0a8dff;
            --dark-bg: #0a0a0f;
            --card-bg: #151522;
            --accent-red: #ff003c;
            --terminal-text: #c8c8c8;
            --grid-color: rgba(0, 255, 65, 0.1);
        }
        
        * {
            box-sizing: border-box;
            font-family: 'Courier New', 'Segoe UI', monospace;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--terminal-text);
            min-height: 100vh;
            background-image: 
                linear-gradient(var(--grid-color) 1px, transparent 1px),
                linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
            background-size: 40px 40px;
            position: relative;
            overflow-x: hidden;
        }
        
        li, p {
            color: #999999;
        }
        
        /* Animated Background Elements */
        .binary-rain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0.1;
        }
        
        .binary-digit {
            position: absolute;
            color: var(--matrix-green);
            font-size: 14px;
            animation: fall linear infinite;
        }
        
        @keyframes fall {
            to { transform: translateY(100vh); }
        }
        
        .scan-line {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--matrix-green), transparent);
            animation: scan 3s linear infinite;
            z-index: 999;
            pointer-events: none;
        }
        
        @keyframes scan {
            0% { top: 0%; }
            100% { top: 100%; }
        }
        
        /* Main Container */
        .cyber-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            z-index: 1;
        }
        
        /* Construction Banner */
        .construction-banner {
            background: linear-gradient(90deg, var(--accent-red), #ff0066);
            color: white;
            padding: 15px;
            text-align: center;
            margin-bottom: 40px;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 0 20px rgba(255, 0, 60, 0.5);
            animation: pulse 2s infinite;
            position: relative;
            overflow: hidden;
        }
        
        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 60, 0.5); }
            50% { box-shadow: 0 0 30px rgba(255, 0, 60, 0.8); }
        }
        
        .construction-banner i {
            margin-right: 10px;
            animation: spin 4s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Header Section */
        .cyber-header {
            text-align: center;
            margin-bottom: 60px;
            padding: 40px;
            background: rgba(21, 21, 34, 0.8);
            border-radius: 10px;
            border: 1px solid rgba(0, 255, 65, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .cyber-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--matrix-green), var(--cyber-blue));
        }
        
        .hacker-title {
            font-size: 3.5rem;
            background: linear-gradient(90deg, var(--matrix-green), var(--cyber-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            display: inline-block;
        }
        
        .hacker-title::after {
            content: '_';
            animation: blink 1s infinite;
            color: var(--matrix-green);
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
        
        .subtitle {
            font-size: 1.2rem;
            color: var(--terminal-text);
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        /* Status Indicator */
        .status-indicator {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            background: rgba(255, 0, 60, 0.1);
            border: 1px solid var(--accent-red);
            border-radius: 30px;
            margin-top: 20px;
        }
        
        .pulsing-dot {
            width: 12px;
            height: 12px;
            background-color: var(--accent-red);
            border-radius: 50%;
            animation: pulse-dot 1.5s infinite;
        }
        
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }
        
        /* Content Grid */
        .cyber-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        @media (max-width: 992px) {
            .cyber-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Cyber Card */
        .cyber-card {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 40px;
            border: 1px solid rgba(10, 141, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .cyber-card:hover {
            border-color: var(--cyber-blue);
            box-shadow: 0 0 30px rgba(10, 141, 255, 0.2);
        }
        
        .cyber-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--matrix-green), var(--cyber-blue));
        }
        
        .card-title {
            color: var(--cyber-blue);
            font-size: 1.8rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .card-title i {
            color: var(--matrix-green);
        }
        
        .card-text {
            line-height: 1.7;
            margin-bottom: 25px;
            color: #b0b0b0;
        }
        
        /* Feature List */
        .feature-list {
            list-style: none;
            margin: 25px 0;
        }
        
        .feature-list li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            border-bottom: 1px dashed rgba(0, 255, 65, 0.1);
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list li::before {
            content: '&gt;';
            position: absolute;
            left: 0;
            color: var(--matrix-green);
            font-weight: bold;
        }
        
        /* MITRE Matrix Preview */
        .mitre-matrix {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin: 25px 0;
        }
        
        .mitre-item {
            background: rgba(10, 141, 255, 0.05);
            border: 1px solid rgba(10, 141, 255, 0.2);
            padding: 15px;
            border-radius: 6px;
            text-align: center;
            transition: all 0.3s;
            cursor: default;
        }
        
        .mitre-item:hover {
            background: rgba(10, 141, 255, 0.1);
            border-color: var(--cyber-blue);
            transform: translateY(-3px);
        }
        
        .mitre-code {
            color: var(--matrix-green);
            font-family: monospace;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        /* Progress Section */
        .progress-section {
            background: rgba(0, 0, 0, 0.3);
            padding: 25px;
            border-radius: 8px;
            margin-top: 30px;
            border: 1px solid rgba(0, 255, 65, 0.1);
        }
        
        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: #999999;
        }
        
        .progress-bar {
            height: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            overflow: hidden;
            margin-bottom: 15px;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--matrix-green), var(--cyber-blue));
            border-radius: 5px;
            width: 35%;
        }
        
        /* Notification Form */
        .notification-form {
            background: rgba(21, 21, 34, 0.9);
            border: 1px solid rgba(0, 255, 65, 0.3);
            border-radius: 10px;
            padding: 35px;
            position: relative;
            overflow: hidden;
        }
        
        .notification-form::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                transparent 30%,
                rgba(0, 255, 65, 0.03) 50%,
                transparent 70%
            );
            animation: shine 8s infinite linear;
            pointer-events: none;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }
        
        .form-title {
            color: var(--matrix-green);
            font-size: 1.5rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            color: var(--terminal-text);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-input {
            width: 100%;
            padding: 15px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(0, 255, 65, 0.2);
            border-radius: 6px;
            color: var(--terminal-text);
            font-family: 'Courier New', monospace;
            transition: all 0.3s;
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--matrix-green);
            box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
        }
        
        .form-select {
            width: 100%;
            padding: 15px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(0, 255, 65, 0.2);
            border-radius: 6px;
            color: var(--terminal-text);
            font-family: 'Courier New', monospace;
        }
        
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
        }
        
        .checkbox-group input {
            accent-color: var(--matrix-green);
        }
        
        .cyber-button {
            width: 100%;
            padding: 18px;
            background: linear-gradient(90deg, var(--matrix-green), var(--cyber-blue));
            border: none;
            border-radius: 6px;
            color: black;
            font-weight: bold;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Courier New', monospace;
            position: relative;
            overflow: hidden;
        }
        
        .cyber-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 65, 0.3);
        }
        
        .cyber-button:active {
            transform: translateY(-1px);
        }
        
        .button-text {
            position: relative;
            z-index: 2;
        }
        
        .coming-soon {
            background: rgba(255, 0, 60, 0.1);
            border: 1px solid rgba(255, 0, 60, 0.3);
            padding: 20px;
            border-radius: 8px;
            margin-top: 25px;
            text-align: center;
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }
        
        .countdown-item {
            text-align: center;
        }
        
        .countdown-value {
            display: block;
            font-size: 2rem;
            color: var(--matrix-green);
            font-weight: bold;
        }
        
        .countdown-label {
            font-size: 0.8rem;
            color: var(--terminal-text);
        }
        
        /* Footer Note */
        .footer-note {
            text-align: center;
            padding: 40px;
            color: #666;
            font-size: 0.9rem;
            border-top: 1px dashed rgba(0, 255, 65, 0.1);
            margin-top: 60px;
        }
        
        .hacker-logo {
            color: var(--matrix-green);
            font-size: 1.2rem;
            margin-top: 20px;
            letter-spacing: 2px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hacker-title {
                font-size: 2.5rem;
            }
            
            .cyber-card {
                padding: 25px;
            }
            
            .mitre-matrix {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .countdown {
                flex-wrap: wrap;
            }
        }
        
        @media (max-width: 480px) {
            .hacker-title {
                font-size: 2rem;
            }
            
            .mitre-matrix {
                grid-template-columns: 1fr;
            }
            
            .cyber-header {
                padding: 25px 15px;
            }
        }/* End custom CSS */