/* POLL*/

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* TITLES */
.poll-pretitle {
    font-size: 14px;
    opacity: .7;
    margin-bottom: 8px;
    color: white;
}

.poll-title {
    font-size: 26px;
    margin-bottom: 20px;
    color: white;
}

/* OPTIONS */
.poll-options label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .05);
    cursor: pointer;
    transition: .25s;
    color: white;
}

.poll-options input {
    display: none;
}

.poll-options input:checked+i {
    color: #e03927;
}

.poll-options label:hover {
    background: rgba(255, 255, 255, .12);
}

/* BUTTON */
.vote-btn {
    background: #e03927;
    justify-content: center;
}

/* STEPS */
.poll-step {
    display: none;
}

.poll-step.active {
    display: block;
    animation: fade .4s ease;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FORM */
.poll-form input {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, .9);
}

/* RESULTS */
.result-item {
    margin-bottom: 14px;
}

.result-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 6px;
}

.result-bar {
    height: 8px;
    background: rgba(255, 255, 255, .2);
    border-radius: 10px;
    overflow: hidden;
}

.result-fill {
    height: 100%;
    width: 0%;
    background: #e03927;
    transition: width 1s ease;
}

.highlight {
    font-weight: bold;
}

.total-votes {
    margin-top: 20px;
    font-size: 14px;
    opacity: .8;
}

/* ORIGINAL */
.adventure-login-overlay {
    padding: 80px 20px;
    color: white;
}

.adventure-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.adventure-cta h1 {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #fff;
}

.subtitle {
    font-size: 18px;
    opacity: .9;
    max-width: 420px;
    margin-bottom: 30px;
    color: #fff;
}

.benefits {
    list-style: none;
    padding: 0;
}

.benefits li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.login-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 36px;
}

.login-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    color: white;
}

.mail {
    background: #b7926c;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}

@media(max-width:900px) {
    .adventure-grid {
        grid-template-columns: 1fr;
    }
}