* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            min-height: 100vh;
            background: #fff;
        }

        .container {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 5%;


        }

        /* Achtergrond met vloeiende vormen - IDENTIQUE */
        .background-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.7;
            animation: float 20s infinite ease-in-out;
        }

        .shape1 {
            width: 600px;
            height: 600px;
            background: linear-gradient(135deg, #FDB94E 0%, #FF8C42 100%);
            top: -200px;
            right: -100px;
            animation-delay: 0s;
        }

        .shape2 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #FFD23F 0%, #FDB94E 100%);
            bottom: -150px;
            left: -100px;
            animation-delay: 5s;
        }

        .shape3 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #FFAA33 0%, #FF6B35 100%);
            top: 50%;
            left: 30%;
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(30px, -30px) scale(1.05);
            }
            50% {
                transform: translate(-20px, 20px) scale(0.95);
            }
            75% {
                transform: translate(20px, 30px) scale(1.02);
            }
        }

        /* Content sectie - CENTRÉ AU MILIEU */
        .content {
            max-width: 500px;
            z-index: 2;
            animation: fadeInCenter 1s ease-out;
            text-align: center;
        }

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

        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 3rem;
            animation: fadeIn 1.5s ease-out;
        }

        .logo-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
        }

        .logo-icon svg {
            width: 40px;
            height: 40px;
            fill: white;
        }

        .logo-text {
            font-size: 3rem;
            font-weight: 800;
            color: #333;
        }

        .button-row {
            display: flex;
            gap: 1rem;
            justify-content: center;
            animation: fadeIn 2.2s ease-out;
        }

        .orange-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
            position: relative;
            overflow: hidden;
        }

        .orange-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .orange-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }

        .orange-btn:hover:before {
            left: 100%;
        }

        .orange-btn.secondary {
            background: white;
            color: #FF6B35;
            border: 2px solid #FF6B35;
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 2rem;
                min-height: auto;
            }

            body {
                overflow-y: auto;
            }

            .button-row {
                flex-direction: column;
                width: 100%;
                align-items: center;
            }

            .orange-btn {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .logo-text {
                font-size: 2.5rem;
            }

            .logo-icon {
                width: 60px;
                height: 60px;
            }

            .logo-icon svg {
                width: 35px;
                height: 35px;
            }
        }

        @media (max-width: 480px) {
            .content {
                max-width: 90%;
            }

            .logo-text {
                font-size: 2rem;
            }

            .logo-icon {
                width: 50px;
                height: 50px;
                margin-right: 15px;
            }

            .logo-icon svg {
                width: 30px;
                height: 30px;
            }
        }