 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #ffffff;
            text-align: center;
            padding: 20px;
        }
        
        .container {
            background-color: rgba(255, 255, 255, 0.418);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 600px;
            animation: fadeIn 1s ease-in-out;
            position: relative;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        h1 {
            font-size: 3em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        #game-text {
            font-size: 1.7em;
            font-weight: 400;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px auto;
            max-width: 90%;
            background-color: rgba(255, 255, 255, 0.363);
            border-radius: 50px;
            color: #764ba2;
            padding: 15px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.377);
            transition: transform 0.3s ease;
        }
        
        #game-text.active {
            animation: bounceIn 0.5s ease-in-out;
        }

        @keyframes bounceIn {
            0% { transform: scale(0.8); opacity: 0; }
            50% { transform: scale(1.1); opacity: 1; }
            100% { transform: scale(1); }
        }

        .button-container {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        button {
            padding: 15px 30px;
            font-size: 1.2em;
            font-weight: 600;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            color: #ffffff;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        button:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        #get-truth {
            background: #2ecc71; /* Green */
        }
        
        #get-dare {
            background: #e74c3c; /* Red */
        }

        .themed-buttons {
            display: flex;
            flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .themed-buttons button {
            background-color: rgba(255, 255, 255, 0.2);
            width: 60px;
            height: 60px;
            padding: 0;
            border-radius: 50%;
            font-size: 2em;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .themed-buttons button:hover {
            transform: scale(1.1);
        }

        .themed-buttons .active-mode {
            /* This class is added to the button when the mode is active */
            box-shadow: 0 0 15px 5px #ffffff;
            transform: scale(1.1);
            background-color: rgba(255, 255, 255, 0.5); 
        }