@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #FFFFFF;
            color: #1A1A1A;
            overflow-x: hidden;
        }

        .bg-primary {
            background-color: #FFD1DC;
        }

        .bg-secondary {
            background-color: #FFAEC0;
        }

        .text-primary {
            color: #FFD1DC;
        }

        .text-secondary {
            color: #FFAEC0;
        }

        .shape-1 {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            background-color: #FFD1DC;
            opacity: 0.7;
            z-index: -1;
            animation: float 8s ease-in-out infinite;
        }

        .shape-2 {
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            background-color: #FFAEC0;
            opacity: 0.5;
            z-index: -1;
            animation: float 6s ease-in-out infinite;
        }

        .shape-3 {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50% 20% 20% 80% / 70% 20% 80% 30%;
            background-color: #FFD1DC;
            opacity: 0.6;
            z-index: -1;
            animation: float 10s ease-in-out infinite;
        }

        .line-decoration {
            position: absolute;
            height: 2px;
            background-color: #FFAEC0;
            transform-origin: left center;
            z-index: -1;
        }

        .dot-decoration {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #FFAEC0;
            z-index: -1;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }

            100% {
                transform: translateY(0) rotate(0deg);
            }
        }

        .countdown {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1A1A1A;
        }

        .home-btn {
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .home-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .error-number {
            font-size: 8rem;
            font-weight: 700;
            line-height: 1;
            background: linear-gradient(135deg, #FFD1DC 0%, #FFAEC0 100%);
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 768px) {
            .error-number {
                font-size: 6rem;
            }

            .shape-1 {
                width: 150px;
                height: 150px;
            }

            .shape-2 {
                width: 100px;
                height: 100px;
            }

            .shape-3 {
                width: 80px;
                height: 80px;
            }
        }