@import url('https://fonts.googleapis.com/css2?family=Bitcount+Single:wght@100..900&display=swap');




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

          @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
        }


        body {
            min-height: 100vh;
            font-family: 'Bitcount Single', sans-serif;
            background: radial-gradient(ellipse at 60% 50%, #0c0ce2 0%, #0202a3 40%, #1a1a60 80%, #030394 100%);
            color: #ffffff;
            overflow-x: hidden;
            position: relative;
            transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
            animation: gradientShift 5s ease infinite;
        }

        /* Animated background particles */
        /* body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 0% 100%, rgba(120, 119, 198, 0.1) 0%, transparent 0%),
                        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
            transition: all 0.8s ease;
        }
         */
        /* Happy state */
        body.happy {
            background: radial-gradient(ellipse at 60% 50%, #3882f6 0%, #2323a0 50%, #181830 90%, #050510 100%);
            color: #fff;
        }
        
        body.happy::before {
            background: radial-gradient(circle at 60% 40%, rgba(56,130,246,0.18) 0%, transparent 60%);
        }
        
        /* Sad state */
        body.sad {
            background: radial-gradient(ellipse at 60% 50%, #2323a0 0%, #180d3d 50%, #110a1a 90%, #050510 100%);
            color: #b0c4de;
        }
        
        body.sad::before {
            background: radial-gradient(circle at 60% 40%, rgba(24, 0, 74, 0.18) 0%, transparent 60%);
        }
        
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
            position: relative;
            z-index: 2;
            margin:auto;
        }
        
        .background-graphic {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 700px;
            /* border-radius: 25%; */
            opacity: 1;
            filter: blur(1px);
            box-shadow: 0 0 150px 100px rgba(0, 0, 0, 0.7);
            animation: pulse 4s ease-in-out infinite alternate;
            z-index: 0;
            transition: all 0.8s ease;
            overflow: hidden;
        }
        
        .background-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* border-radius: 15%; */
        }
        
        body.happy .background-graphic {
            opacity: 0.3;
            filter: brightness(1.5) saturate(1.2);
        }
        
        body.sad .background-graphic {
            opacity: 0.2;
            filter: brightness(0.5) saturate(0.8);
        }
        
        @keyframes pulse {
            0% { transform: translate(-50%, -50%) scale(1); }
            100% { transform: translate(-50%, -50%) scale(1.1); }
        }
        
        .question-input {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 300;
            text-align: center;
            margin-bottom: 60px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            background: linear-gradient(45deg, #fff, #ccc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 3;
            border: none;
            background-color: transparent;
            outline: none;
            width: 100%;
            max-width: 800px;
            min-height: 2rem;
            padding: 20px;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
            transition: all 0.6s ease;
            position: absolute;
            top:20%;
        }
        
        .question-input::placeholder {
            background: linear-gradient(45deg, #fff, #ccc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.7;
        }
        
        body.happy .question-input,
        body.happy .question-input::placeholder {
            background: linear-gradient(45deg, #000, #333);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }
        
        body.sad .question-input,
        body.sad .question-input::placeholder {
            background: linear-gradient(45deg, #b0c4de, #87ceeb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(176, 196, 222, 0.5);
        }
        
        .buttons-container {
            display: flex;
            gap: 40px;
            margin-top: 250px;
            position: relative;
            z-index: 3;
        }
        
        .mood-button {
            padding: 25px 50px;
            font-size: 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            text-decoration: none;
            border: 2.5px solid;
            border-radius: 15px;
            background: rgba(30, 40, 120, 0.18);
            color: #3882f6;
            position: relative;
            overflow: hidden;
            transition: 
                box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-color 0.3s,
                color 0.3s;
            box-shadow: 0 8px 32px 0 rgba(56,130,246,0.12);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        
        .mood-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .mood-button:hover::before {
            left: 100%;
        }
        
        .happy-button {
            border-color: #3882f6;
            color: #3882f6;
        }
        .happy-button:hover, .happy-button:focus {
            border-color: #60a5fa;
            color: #60a5fa;
            box-shadow: 0 0 32px 0 rgba(56,130,246,0.22);
            background: rgba(56,130,246,0.10);
        }
        
        .sad-button {
            border-color: #ef4444;
            color: #ef4444;
        }
        .sad-button:hover, .sad-button:focus {
            border-color: #b91c1c;
            color: #b91c1c;
            box-shadow: 0 0 32px 0 rgba(185,28,28,0.22);
            background: rgba(185,28,28,0.10);
        }
        
        /* Remove gold border effect */
        .luxury-border {
            display: none !important;
        }
        
        /* Glow effect for glass buttons */
        .glow-effect {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(56,130,246,0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .happy-button:hover .glow-effect,
        .sad-button:hover .glow-effect {
            opacity: 1;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .buttons-container {
                flex-direction: row;
                gap: 20px;
            }



            .mood-button {
                padding: 15px 35px;
                font-size: 1.2rem;
            }
            
            .background-graphic {
                width: 100vw;
                height: 100vh;
            }

        }