* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #121212;
            background-image: radial-gradient(circle, #2a2a2a 1px, transparent 1px);
            background-size: 30px 30px;
            color: #f0f0f0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
            overflow-x: hidden;
        }
        
        .header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #f5c542;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .tagline {
            font-style: italic;
            color: #aaa;
            font-size: 1.2rem;
        }
        
        .cookie-container {
            position: relative;
            width: 300px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px;
            margin-bottom: 40px;
        }
        
        .cookie {
            width: 220px;
            height: 220px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23f5c542" d="M50,2C23.5,2,2,23.5,2,50s21.5,48,48,48s48-21.5,48-48S76.5,2,50,2z"/><path fill="%23e6b53c" d="M50,2c-4.7,0-9.2,0.7-13.5,1.9C59.9,10.5,76,28.5,76,50c0,21.5-16.1,39.5-39.5,46.1c4.3,1.2,8.8,1.9,13.5,1.9c26.5,0,48-21.5,48-48S76.5,2,50,2z"/><path fill="%23be8c20" d="M35,20c-2.8,0-5,2.2-5,5s2.2,5,5,5s5-2.2,5-5S37.8,20,35,20z M65,40c-2.8,0-5,2.2-5,5s2.2,5,5,5s5-2.2,5-5S67.8,40,65,40z M30,55c-2.8,0-5,2.2-5,5s2.2,5,5,5s5-2.2,5-5S32.8,55,30,55z M55,65c-2.8,0-5,2.2-5,5s2.2,5,5,5s5-2.2,5-5S57.8,65,55,65z M45,30c-2.8,0-5,2.2-5,5s2.2,5,5,5s5-2.2,5-5S47.8,30,45,30z"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            cursor: pointer;
            transform-style: preserve-3d;
            transition: transform 0.5s ease-in-out;
            border-radius: 50%;
            box-shadow: 0 10px 25px rgba(245, 197, 66, 0.2);
        }
        
        .cookie:hover {
            transform: rotate(5deg);
        }
        
        .cookie-left, .cookie-right {
            position: absolute;
            width: 220px;
            height: 220px;
            backface-visibility: hidden;
            border-radius: 50%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23f5c542" d="M50,2C23.5,2,2,23.5,2,50s21.5,48,48,48s48-21.5,48-48S76.5,2,50,2z"/><path fill="%23e6b53c" d="M50,2c-4.7,0-9.2,0.7-13.5,1.9C59.9,10.5,76,28.5,76,50c0,21.5-16.1,39.5-39.5,46.1c4.3,1.2,8.8,1.9,13.5,1.9c26.5,0,48-21.5,48-48S76.5,2,50,2z"/><path fill="%23be8c20" d="M35,20c-2.8,0-5,2.2-5,5s2.2,5,5,5s5-2.2,5-5S37.8,20,35,20z M65,40c-2.8,0-5,2.2-5,5s2.2,5,5,5s5-2.2,5-5S67.8,40,65,40z M30,55c-2.8,0-5,2.2-5,5s2.2,5,5,5s5-2.2,5-5S32.8,55,30,55z M55,65c-2.8,0-5,2.2-5,5s2.2,5,5,5s5-2.2,5-5S57.8,65,55,65z M45,30c-2.8,0-5,2.2-5,5s2.2,5,5,5s5-2.2,5-5S47.8,30,45,30z"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            display: none;
        }
        
        .cookie-broken .cookie {
            display: none;
        }
        
        .cookie-broken .cookie-left {
            display: block;
            animation: break-left 0.8s forwards;
        }
        
        .cookie-broken .cookie-right {
            display: block;
            animation: break-right 0.8s forwards;
        }
        
        @keyframes break-left {
            0% { transform: translateX(0) rotate(0); opacity: 1; }
            100% { transform: translateX(-150px) rotate(-20deg); opacity: 0; }
        }
        
        @keyframes break-right {
            0% { transform: translateX(0) rotate(0); opacity: 1; }
            100% { transform: translateX(150px) rotate(20deg); opacity: 0; }
        }
        
        .fortune {
            position: absolute;
            background-color: #fff;
            color: #333;
            padding: 20px;
            border-radius: 5px;
            max-width: 300px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transform: translateY(20px) scale(0);
            opacity: 0;
            transition: transform 0.5s, opacity 0.5s;
            z-index: 10;
        }
        
        .fortune.show {
            transform: translateY(0) scale(1);
            opacity: 1;
        }
        
        .fortune p {
            font-size: 1.1rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .paper {
            background-color: #fff8e1;
            background-image: 
                linear-gradient(90deg, transparent 79px, #abced4 79px, #abced4 81px, transparent 81px),
                linear-gradient(#eee .1em, transparent .1em);
            background-size: 100% 1.2em;
            position: relative;
            transform: rotate(-2deg);
            padding: 15px 15px 15px 100px;
            border-radius: 3px;
            font-family: 'Courier New', Courier, monospace;
            font-size: 16px;
            line-height: 1.2em;
            color: #333;
        }
        
        .btn {
            background-color: #f5c542;
            color: #333;
            border: none;
            padding: 12px 24px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
            margin-top: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .btn:hover {
            background-color: #e6b53c;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }
        
        .btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .hidden {
            display: none;
        }
        
        .credits {
            margin-top: 40px;
            font-size: 0.8rem;
            color: #666;
            text-align: center;
        }
        
        /* Animations supplémentaires */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        .float {
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        /* Éléments décoratifs */
        .decoration {
            position: fixed;
            font-size: 2rem;
            opacity: 0.1;
            z-index: -1;
            pointer-events: none;
        }
        
        #dec1 { top: 10%; left: 10%; animation: float 7s infinite; }
        #dec2 { top: 20%; right: 15%; animation: float 5s infinite; animation-delay: 1s; }
        #dec3 { bottom: 15%; left: 20%; animation: float 6s infinite; animation-delay: 0.5s; }
        #dec4 { bottom: 10%; right: 10%; animation: float 8s infinite; animation-delay: 1.5s; }
        
        /* Responsive design */
        @media (max-width: 600px) {
            .cookie-container {
                width: 250px;
                height: 250px;
            }
            
            .cookie, .cookie-left, .cookie-right {
                width: 180px;
                height: 180px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .tagline {
                font-size: 1rem;
            }
            
            .fortune {
                max-width: 250px;
            }
        }
        
        /* Social media sharing */
        .social-share {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        .social-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        .social-icon:hover {
            transform: scale(1.2);
        }
        
        .twitter { background-color: #1DA1F2; }
        .facebook { background-color: #4267B2; }
        .copy { background-color: #333; }