.elementor-10997 .elementor-element.elementor-element-9786a56{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        body {
            font-family: 'Georgia', 'Garamond', serif;
            background: linear-gradient(135deg, #f5f1eb 0%, #ede8e0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            position: relative;
        }

        /* Animated background particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(51, 51, 51, 0.15);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0.3;
            }
            50% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100vh) translateX(20px);
                opacity: 0;
            }
        }

        .container {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 40px;
            max-width: 700px;
        }

        /* 404 Number - Floating Animation */
        .error-code {
            font-size: clamp(80px, 20vw, 200px);
            font-weight: 700;
            color: #333;
            letter-spacing: -4px;
            margin-bottom: 20px;
            animation: float-up 3s ease-in-out infinite;
            line-height: 1;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
        }

        @keyframes float-up {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        /* Decorative rings */
        .rings {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 350px;
            height: 350px;
            pointer-events: none;
        }

        .ring {
            position: absolute;
            border: 2px solid rgba(51, 51, 51, 0.1);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .ring-1 {
            width: 300px;
            height: 300px;
            animation: rotate 20s linear infinite;
        }

        .ring-2 {
            width: 200px;
            height: 200px;
            animation: rotate-reverse 15s linear infinite;
        }

        .ring-3 {
            width: 100px;
            height: 100px;
            animation: rotate 10s linear infinite;
            border-color: rgba(51, 51, 51, 0.15);
        }

        @keyframes rotate {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        @keyframes rotate-reverse {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(-360deg);
            }
        }

        /* Content */
        .content {
            position: relative;
            z-index: 2;
            animation: slide-in-up 0.8s ease-out;
        }

        @keyframes slide-in-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .title {
            font-size: clamp(28px, 5vw, 48px);
            color: #333;
            margin-bottom: 16px;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .subtitle {
            font-size: clamp(14px, 3vw, 18px);
            color: #777;
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Button group */
        .button-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fade-in 1s ease-out 0.3s both;
        }

        @keyframes fade-in {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .button {
            padding: 14px 32px;
            font-size: 14px;
            font-family: inherit;
            border: none;
            cursor: pointer;
            border-radius: 50px;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .button-primary {
            background: #333;
            color: #f5f1eb;
        }

        .button-primary:hover {
            background: #555;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(51, 51, 51, 0.2);
        }

        .button-secondary {
            background: transparent;
            color: #333;
            border: 1.5px solid #333;
        }

        .button-secondary:hover {
            background: #333;
            color: #f5f1eb;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(51, 51, 51, 0.15);
        }

        .button:active {
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 600px) {
            .container {
                padding: 20px;
            }

            .error-code {
                margin-bottom: 15px;
            }

            .button-group {
                flex-direction: column;
                gap: 12px;
            }

            .button {
                width: 100%;
            }

            .rings {
                width: 200px;
                height: 200px;
            }

            .ring-1 {
                width: 180px;
                height: 180px;
            }

            .ring-2 {
                width: 120px;
                height: 120px;
            }

            .ring-3 {
                width: 60px;
                height: 60px;
            }
        }

        /* Cursor glow effect */
        .glow-cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border: 1px solid rgba(51, 51, 51, 0.2);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            display: none;
        }

        body.supports-pointer-events .glow-cursor {
            display: block;
        }/* End custom CSS */