 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            background-color: #0a0a0a;
            color: #ffffff;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .container {
            max-width: 1200px;
            width: 100%;
        }
        
        .poll-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .poll-title {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }
        
        .poll-subtitle {
            font-size: 16px;
            color: #888;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .response-count {
            color: #fff;
            font-weight: 500;
        }
        
        .reactions-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 35px;
            flex-wrap: wrap;
            padding: 30px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .reaction-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 15px;
            border-radius: 15px;
            position: relative;
            width: 140px;
        }
        
        .reaction-item:hover {
            background: rgba(255, 255, 255, 0.03);
        }
        
        .reaction-image-wrapper {
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: filter 0.3s ease;
        }
        
        .reaction-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            padding: 10px;
            transition: all 0.3s ease;
        }
        
        /* Quando selecionado - sem movimento das outras imagens */
        .reaction-item.selected .reaction-image-wrapper {
            filter: drop-shadow(0 0 20px rgba(255, 100, 100, 0.5));
        }
        
        .reaction-item.selected .reaction-image {
            background: rgba(255, 100, 100, 0.1);
            border: 3px solid #ff4444;
            transform: scale(1.05);
        }
        
        .reaction-name {
            font-size: 14px;
            color: #ccc;
            font-weight: 500;
            text-transform: capitalize;
        }
        
        .reaction-count {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            min-width: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .reaction-item.selected .reaction-count {
            color: #ff4444;
            transform: scale(1.2);
        }
        
        /* Animação do contador */
        @keyframes countPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }
        
        .reaction-count.pulse {
            animation: countPulse 0.3s ease;
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            .reactions-container {
                gap: 20px;
                padding: 20px;
            }
            
            .reaction-item {
                width: 120px;
                padding: 10px;
            }
            
            .reaction-image-wrapper {
                width: 80px;
                height: 80px;
            }
            
            .poll-title {
                font-size: 24px;
            }
        }
        
        @media (max-width: 480px) {
            .reactions-container {
                gap: 15px;
                padding: 15px;
            }
            
            .reaction-item {
                width: 100px;
            }
            
            .reaction-image-wrapper {
                width: 70px;
                height: 70px;
            }
        }