.elementor-22520 .elementor-element.elementor-element-5384c3d{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-4612cda */body {
            background: #0a0a0a;
            color: #333333;
            font-family: 'Rajdhani', sans-serif;
        }
        
        .container {
            text-align: center;
            padding: 40px;
            width: 100%;
            max-width: 800px;
        }
        
        .error-code {
            font-size: 180px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 20px;
            letter-spacing: 5px;
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .digit {
            width: 140px;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.1s ease;
        }
        
        .digit.active {
            color: #9C0002;
            text-shadow: 0 0 20px rgba(156, 0, 2, 0.8);
        }
        
        .digit.inactive {
            color: #330000;
            opacity: 0.3;
        }
        
        .error-title {
            font-size: 28px;
            letter-spacing: 8px;
            margin-bottom: 30px;
            font-weight: 700;
            text-transform: uppercase;
            color: #444444;
        }
        
        .error-description {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            letter-spacing: 1px;
            color: #555555;
        }
        
        .home-btn {
            color: #555555;
            text-decoration: none;
            font-size: 16px;
            letter-spacing: 3px;
            text-transform: uppercase;
            padding: 15px 50px;
           
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            background: transparent;
            font-weight: 700;
            position: relative;
            overflow: hidden;
            text-decoration: none !important;
        }
        
        .home-btn:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: #9C0002;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }
        
        .home-btn:hover {
            color: #ffffff;
            border-color: #9C0002;
            box-shadow: 0 0 20px rgba(156, 0, 2, 0.3);
        }
        
        .home-btn:hover:before {
            height: 100%;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .error-code {
                font-size: 120px;
            }
            
            .digit {
                width: 90px;
                height: 140px;
            }
            
            .error-title {
                font-size: 22px;
                letter-spacing: 5px;
            }
            
            .error-description {
                font-size: 16px;
                padding: 0 20px;
            }
            
            .home-btn {
                font-size: 14px;
                padding: 12px 40px;
            }
        }
        
        @media (max-width: 480px) {
            .error-code {
                font-size: 80px;
            }
            
            .digit {
                width: 60px;
                height: 100px;
            }
            
            .error-title {
                font-size: 18px;
                letter-spacing: 3px;
            }
            
            .error-description {
                font-size: 14px;
            }
        }/* End custom CSS */