:root {
--encuwp-primary: #ff0a54;
--encuwp-secondary: #ff5e7e;
--encuwp-bg: #1a1a1a;
--encuwp-text: #ffffff;
--encuwp-glass: rgba(255, 255, 255, 0.18);
--encuwp-glass-strong: rgba(255, 255, 255, 0.32);
--encuwp-glass-border: rgba(255, 255, 255, 0.25);
--encuwp-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
--encuwp-radius: 22px;
--encuwp-radius-sm: 14px;
--encuwp-anim: cubic-bezier(0.16, 1, 0.3, 1);
}
.encuwp-poll * {
box-sizing: border-box;
}
.encuwp-poll {
position: relative;
display: flex;
flex-direction: column;
width: 100%;
max-width: 420px;
min-height: 560px;
margin: 24px auto;
border-radius: var(--encuwp-radius);
overflow: hidden;
color: var(--encuwp-text);
background: linear-gradient(135deg, #ff0a54 0%, #ff5e7e 50%, #ff9966 100%);
box-shadow: var(--encuwp-shadow);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
isolation: isolate;
}
.encuwp-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
z-index: 0;
transform: scale(1.05);
filter: saturate(1.1);
}
.encuwp-bg-overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.75) 100%);
z-index: 1;
}
.encuwp-content {
position: relative;
z-index: 2;
flex: 1 1 auto;
display: flex;
flex-direction: column;
padding: 22px 20px;
gap: 14px;
} .encuwp-countdown {
display: flex;
gap: 6px;
align-self: flex-end;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
background: var(--encuwp-glass);
border: 1px solid var(--encuwp-glass-border);
padding: 6px 10px;
border-radius: 999px;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.4px;
}
.encuwp-cd-item {
display: inline-flex;
align-items: baseline;
gap: 2px;
}
.encuwp-cd-item span {
font-variant-numeric: tabular-nums;
}
.encuwp-cd-item em {
font-style: normal;
opacity: 0.7;
font-size: 10px;
text-transform: uppercase;
} .encuwp-question {
margin: 0;
font-size: clamp(20px, 5vw, 26px);
line-height: 1.25;
font-weight: 700;
text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
letter-spacing: -0.01em;
}
.encuwp-description {
font-size: 14px;
line-height: 1.5;
opacity: 0.92;
text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.encuwp-description p { margin: 0 0 8px; }
.encuwp-description p:last-child { margin-bottom: 0; } .encuwp-step {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: auto;
}
.encuwp-step[hidden] { display: none; }
.encuwp-step-intro {
margin: 0;
font-size: 14px;
opacity: 0.9;
} .encuwp-form {
display: flex;
flex-direction: column;
gap: 8px;
}
.encuwp-form input[type="text"],
.encuwp-form input[type="email"] {
width: 100%;
padding: 14px 16px;
border-radius: var(--encuwp-radius-sm);
border: 1px solid var(--encuwp-glass-border);
background: var(--encuwp-glass);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
color: var(--encuwp-text);
font-size: 13px;
transition: border-color 0.2s, background 0.2s;
}
.encuwp-form input::placeholder { font-size: 12px; }
.encuwp-form input::placeholder { color: rgba(255,255,255,0.7); }
.encuwp-form input:focus {
outline: none;
border-color: rgba(255,255,255,0.6);
background: var(--encuwp-glass-strong);
} .encuwp-btn {
display: inline-flex;
justify-content: center;
align-items: center;
padding: 14px 20px;
border-radius: var(--encuwp-radius-sm);
border: none;
font-weight: 600;
font-size: 15px;
cursor: pointer;
transition: transform 0.2s var(--encuwp-anim), background 0.2s, opacity 0.2s;
}
.encuwp-btn:active { transform: scale(0.97); }
.encuwp-btn[disabled] { opacity: 0.6; cursor: not-allowed; }
.encuwp-btn-primary,
.encuwp-poll .encuwp-btn-primary {
background: #ffffff;
color: #1a1a1a;
}
.encuwp-btn-primary:hover,
.encuwp-poll .encuwp-btn-primary:hover {
background: #f4f4f4;
color: #1a1a1a;
}
.encuwp-btn-secondary {
background: var(--encuwp-glass-strong);
color: #fff;
border: 1px solid var(--encuwp-glass-border);
backdrop-filter: blur(10px);
}
.encuwp-btn-link {
background: transparent;
color: #fff;
text-decoration: underline;
padding: 8px;
font-size: 13px;
opacity: 0.85;
transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.encuwp-btn-link:hover { opacity: 1; } .encuwp-cancel-propose:hover,
.encuwp-poll .encuwp-cancel-propose:hover {
background: #ff4d4d;
color: #fff;
opacity: 1;
text-decoration: none;
} .encuwp-form-propose .encuwp-btn-primary:hover,
.encuwp-poll .encuwp-form-propose .encuwp-btn-primary:hover {
background: #22c55e;
color: #fff;
} .encuwp-options {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 10px;
}
.encuwp-option {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
width: 100%;
padding: 16px 18px;
border-radius: var(--encuwp-radius-sm);
border: 1px solid var(--encuwp-glass-border);
background: var(--encuwp-glass);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
color: #fff;
font-size: 14px;
font-weight: 600;
text-align: left;
cursor: pointer;
overflow: hidden;
transition: transform 0.2s var(--encuwp-anim), background 0.2s, border-color 0.2s;
}
.encuwp-option:hover {
background: var(--encuwp-glass-strong);
border-color: rgba(255,255,255,0.45);
}
.encuwp-option:active { transform: scale(0.98); }
.encuwp-option-fill {
position: absolute;
inset: 0;
background: rgba(255, 255, 255, 0.28);
width: 0;
transition: width 0.9s var(--encuwp-anim);
z-index: 0;
border-radius: var(--encuwp-radius-sm);
pointer-events: none;
}
.encuwp-option-text {
position: relative;
z-index: 1;
flex: 1 1 auto;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
}
.encuwp-option-pct {
position: relative;
z-index: 1;
flex: 0 0 auto;
font-variant-numeric: tabular-nums;
opacity: 0;
transition: opacity 0.4s ease 0.3s;
font-weight: 700;
padding-left: 8px;
}
.encuwp-poll.has-voted .encuwp-option-pct,
.encuwp-poll.show-results .encuwp-option-pct { opacity: 1; }
.encuwp-poll.has-voted .encuwp-option,
.encuwp-poll.show-results .encuwp-option {
cursor: default;
pointer-events: none;
}
.encuwp-poll.has-voted .encuwp-option.is-mine {
border-color: #fff;
box-shadow: 0 0 0 2px rgba(255,255,255,0.4);
} .encuwp-option-propose {
border-style: dashed !important;
opacity: 0.95;
}
.encuwp-option-propose .encuwp-plus {
display: inline-block;
width: 22px;
height: 22px;
line-height: 20px;
text-align: center;
border-radius: 50%;
background: rgba(255, 255, 255, 0.25);
margin-right: 8px;
font-weight: 700;
vertical-align: -3px;
}
.encuwp-form-propose {
margin-top: 8px;
padding: 12px;
border-radius: var(--encuwp-radius-sm);
background: var(--encuwp-glass);
border: 1px solid var(--encuwp-glass-border);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
animation: encuwp-slide-in 0.25s var(--encuwp-anim);
}
.encuwp-propose-actions {
display: flex;
gap: 8px;
justify-content: flex-end;
align-items: center;
margin-top: 4px;
}
.encuwp-propose-actions .encuwp-btn-link { padding: 8px 12px; }
.encuwp-propose-actions .encuwp-btn-primary { padding: 10px 18px; font-size: 14px; }
@keyframes encuwp-slide-in {
from { opacity: 0; transform: translateY(-6px); }
to { opacity: 1; transform: translateY(0); }
} .encuwp-results-bars {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 10px;
}
.encuwp-results-row {
display: flex;
justify-content: space-between;
align-items: baseline;
gap: 12px;
margin-bottom: 4px;
font-size: 14px;
}
.encuwp-results-label {
font-weight: 600;
flex: 1 1 auto;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.encuwp-results-pct {
font-weight: 700;
font-variant-numeric: tabular-nums;
flex: 0 0 auto;
}
.encuwp-bar {
height: 8px;
background: rgba(255, 255, 255, 0.18);
border-radius: 999px;
overflow: hidden;
}
.encuwp-bar-fill {
height: 100%;
background: linear-gradient(90deg, #ffffff, #ffd1dc);
border-radius: 999px;
width: 0;
transition: width 1.1s var(--encuwp-anim);
}
.encuwp-results-total {
text-align: center;
margin: 4px 0 0;
font-size: 13px;
opacity: 0.85;
} .encuwp-feedback {
margin: 4px 0 0;
font-size: 13px;
min-height: 18px;
line-height: 1.4;
}
.encuwp-feedback.is-error { color: #ffe0e0; }
.encuwp-feedback.is-success { color: #defce0; }
.encuwp-feedback.is-info { color: #fff; opacity: 0.85; } .encuwp-share {
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
font-size: 12px;
margin-top: 12px;
opacity: 0.9;
}
.encuwp-share-label { font-weight: 600; }
.encuwp-share-btn {
color: #fff;
text-decoration: none;
padding: 6px 10px;
border-radius: 999px;
background: var(--encuwp-glass);
border: 1px solid var(--encuwp-glass-border);
backdrop-filter: blur(8px);
transition: background 0.2s;
}
.encuwp-share-btn:hover { background: var(--encuwp-glass-strong); }
.encuwp-status-msg {
text-align: center;
margin: 16px 0;
font-size: 14px;
opacity: 0.85;
}
.encuwp-empty {
text-align: center;
margin: 24px 0;
opacity: 0.8;
} .encuwp-theme-card {
min-height: 0;
color: #1a1a1a;
background: #fff;
border: 1px solid #e7e7e7;
box-shadow: 0 8px 24px -10px rgba(0,0,0,0.12);
}
.encuwp-theme-card .encuwp-bg-overlay { display: none; }
.encuwp-theme-card .encuwp-content { padding: 24px; }
.encuwp-theme-card .encuwp-question { color: #1a1a1a; text-shadow: none; }
.encuwp-theme-card .encuwp-description { color: #555; text-shadow: none; }
.encuwp-theme-card .encuwp-option {
color: #1a1a1a;
background: #fafafa;
border-color: #e7e7e7;
backdrop-filter: none;
}
.encuwp-theme-card .encuwp-option:hover {
background: #f0f0f0;
border-color: var(--encuwp-primary);
}
.encuwp-theme-card .encuwp-option-fill { background: rgba(255,10,84,0.12); }
.encuwp-theme-card .encuwp-bar { background: #f0f0f0; }
.encuwp-theme-card .encuwp-bar-fill { background: linear-gradient(90deg, var(--encuwp-primary), var(--encuwp-secondary)); }
.encuwp-theme-card .encuwp-share-btn { color: #1a1a1a; background: #f0f0f0; border-color: #e0e0e0; }
.encuwp-theme-card .encuwp-form input[type="text"],
.encuwp-theme-card .encuwp-form input[type="email"] {
background: #fff;
border-color: #e0e0e0;
color: #1a1a1a;
}
.encuwp-theme-card .encuwp-form input::placeholder { color: #999; }
.encuwp-theme-card .encuwp-feedback.is-error { color: #c0392b; }
.encuwp-theme-card .encuwp-feedback.is-success { color: #27ae60; }
.encuwp-theme-card .encuwp-countdown { color: #1a1a1a; background: #f0f0f0; border-color: #e0e0e0; }
.encuwp-theme-card .encuwp-status-msg { color: #555; }
.encuwp-theme-card.is-closed .encuwp-content { padding-top: 24px; } .encuwp-theme-minimal {
min-height: 0;
color: inherit;
background: transparent;
box-shadow: none;
border: none;
}
.encuwp-theme-minimal .encuwp-bg,
.encuwp-theme-minimal .encuwp-bg-overlay { display: none; }
.encuwp-theme-minimal .encuwp-content { padding: 0; }
.encuwp-theme-minimal .encuwp-question { color: inherit; text-shadow: none; }
.encuwp-theme-minimal .encuwp-description { color: inherit; opacity: 0.8; text-shadow: none; }
.encuwp-theme-minimal .encuwp-option {
color: inherit;
background: rgba(0,0,0,0.04);
border-color: rgba(0,0,0,0.1);
backdrop-filter: none;
}
.encuwp-theme-minimal .encuwp-option-fill { background: rgba(0,0,0,0.06); }
.encuwp-theme-minimal .encuwp-bar { background: rgba(0,0,0,0.08); }
.encuwp-theme-minimal .encuwp-bar-fill { background: currentColor; opacity: 0.85; } .encuwp-results-card {
max-width: 600px;
margin: 24px auto;
padding: 24px;
border: 1px solid #e7e7e7;
border-radius: var(--encuwp-radius-sm);
background: #fff;
}
.encuwp-results-card .encuwp-results-title {
margin: 0 0 4px;
font-size: 18px;
text-align: center;
}
.encuwp-results-card .encuwp-results-total {
text-align: center;
margin: 0 0 16px;
color: #555;
}
.encuwp-results-card .encuwp-results-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 12px;
}
.encuwp-results-card .encuwp-results-label { color: #1a1a1a; }
.encuwp-results-card .encuwp-results-pct { color: var(--encuwp-primary); }
.encuwp-results-card .encuwp-bar { background: #f0f0f0; }
.encuwp-results-card .encuwp-bar-fill {
background: linear-gradient(90deg, var(--encuwp-primary), var(--encuwp-secondary));
} @media (max-width: 600px) {
.encuwp-poll {
max-width: 100%;
min-height: 480px;
margin: 16px 0;
border-radius: 18px;
}
.encuwp-content {
padding: 18px 16px;
gap: 12px;
}
.encuwp-question {
font-size: 20px;
line-height: 1.25;
}
.encuwp-description { font-size: 13px; }
.encuwp-countdown {
font-size: 11px;
padding: 5px 8px;
gap: 5px;
}
.encuwp-cd-item em { font-size: 9px; }
.encuwp-option {
padding: 14px 16px;
font-size: 13px;
gap: 12px;
}
.encuwp-form input[type="text"],
.encuwp-form input[type="email"] {
padding: 12px 14px;
font-size: 12px;
}
.encuwp-form input::placeholder { font-size: 11px; }
.encuwp-btn {
padding: 12px 18px;
font-size: 14px;
}
.encuwp-share {
font-size: 11px;
gap: 6px;
}
.encuwp-share-btn {
padding: 5px 8px;
}
.encuwp-propose-actions {
flex-direction: column-reverse;
align-items: stretch;
}
.encuwp-propose-actions .encuwp-btn { width: 100%; }
}
@media (max-width: 380px) {
.encuwp-poll { min-height: 420px; }
.encuwp-content { padding: 16px 14px; }
.encuwp-question { font-size: 18px; }
.encuwp-option { padding: 12px 14px; font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
.encuwp-option-fill,
.encuwp-bar-fill,
.encuwp-option-pct { transition: none; }
} .encuwp-poll ins.adsbygoogle,
.encuwp-poll iframe[src*="googlesyndication"],
.encuwp-poll iframe[src*="doubleclick"],
.encuwp-poll iframe[src*="googleadservices"],
.encuwp-poll iframe[id*="google_ads"],
.encuwp-poll iframe[name*="google_ads"],
.encuwp-poll [class*="adsbygoogle"],
.encuwp-poll [id*="div-gpt-ad"],
.encuwp-poll [data-ad-client],
.encuwp-poll [data-ad-slot],
.encuwp-poll .adsense,
.encuwp-poll .adsense-container,
.encuwp-poll .ad-container,
.encuwp-poll .ezoic-ad,
.encuwp-poll .ai-viewports,
.encuwp-poll .ad-inserter,
.encuwp-poll .code-block-ad {
display: none !important;
visibility: hidden !important;
width: 0 !important;
height: 0 !important;
min-height: 0 !important;
margin: 0 !important;
padding: 0 !important;
overflow: hidden !important;
position: absolute !important;
left: -9999px !important;
}