        body {
            font-family: 'Poppins', sans-serif;
            background-color: #ffebee;
            color: #d32f2f;
            text-align: center;
            margin: 0;
            padding: 20px;
        }
        
        .container {
            max-width: 600px;
            margin: 0 auto;
            background-color: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        h1 {
            color: #c2185b;
        }
        
        .input-section, .game-section, .result-section {
            margin-bottom: 20px;
            padding: 20px;
            border-radius: 10px;
            background-color: #fce4ec;
        }
        
        input {
            padding: 10px;
            margin: 10px;
            border: 2px solid #f8bbd0;
            border-radius: 5px;
            width: 200px;
        }
        
        button {
            background-color: #e91e63;
            color: white;
            border: none;
            padding: 12px 25px;
            margin: 10px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        button:hover {
            background-color: #c2185b;
        }
        
        .hidden {
            display: none;
        }
        
        #spinner {
            font-size: 24px;
            font-weight: bold;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px 0;
        }
        
        #question-display {
            min-height: 100px;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            margin: 20px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            border: 2px dashed #f8bbd0;
        }
        
        .choice-buttons {
            display: flex;
            justify-content: center;
        }
        
        .choice-buttons button {
            width: 150px;
        }
        
        #truth-btn {
            background-color: #4caf50;
        }
        
        #truth-btn:hover {
            background-color: #388e3c;
        }
        
        #dare-btn {
            background-color: #2196f3;
        }
        
        #dare-btn:hover {
            background-color: #1976d2;
        }
        
        #new-question-btn {
            background-color: #ff9800;
        }
        
        #new-question-btn:hover {
            background-color: #f57c00;
        }