.bluehotel-vader-rotator {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #fff;
    border-radius: 12px;
    padding: 14px 18px 12px;
    margin: 20px 0;
    box-shadow: 0 4px 14px rgba(74, 144, 226, 0.22);
    max-width: 520px;
}

.bluehotel-vader-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.bluehotel-vader-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    font-weight: 600;
}

.bluehotel-vader-pause {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: background 0.15s;
    padding: 0;
}

.bluehotel-vader-pause:hover {
    background: rgba(255, 255, 255, 0.3);
}

.bluehotel-vader-card {
    min-height: 96px;
    transition: opacity 0.25s ease;
}

.bluehotel-vader-fade-out {
    opacity: 0;
}

.bluehotel-vader-fade-in {
    animation: bluehotelFadeIn 0.4s ease;
}

@keyframes bluehotelFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.bluehotel-vader-card-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
}

.bluehotel-vader-emoji {
    font-size: 44px;
    line-height: 1;
}

.bluehotel-vader-main {
    min-width: 0;
}

.bluehotel-vader-location {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    opacity: 0.9;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bluehotel-vader-temp {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.bluehotel-vader-desc {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.92;
}

.bluehotel-vader-best {
    margin-top: 4px;
    font-size: 12px;
    opacity: 0.95;
}

.bluehotel-vader-best-label {
    opacity: 0.85;
    margin-right: 4px;
}

.bluehotel-vader-badge {
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    align-self: start;
}

.bluehotel-vader-score-good {
    background: rgba(76, 175, 80, 0.95);
    color: #fff;
}

.bluehotel-vader-score-ok {
    background: rgba(255, 193, 7, 0.95);
    color: #4a3800;
}

.bluehotel-vader-score-avoid {
    background: rgba(239, 83, 80, 0.95);
    color: #fff;
}

.bluehotel-vader-dots {
    display: flex;
    gap: 5px;
    margin-top: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.bluehotel-vader-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.bluehotel-vader-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.bluehotel-vader-dot.active {
    background: #fff;
    transform: scale(1.3);
}

.bluehotel-vader-loading {
    text-align: center;
    padding: 20px;
    opacity: 0.8;
    font-size: 14px;
}

/* Mobil */
@media (max-width: 520px) {
    .bluehotel-vader-rotator {
        padding: 12px 14px 10px;
    }
    .bluehotel-vader-card-inner {
        grid-template-columns: auto 1fr;
        gap: 12px;
    }
    .bluehotel-vader-badge {
        grid-column: 1 / -1;
        justify-self: start;
        margin-top: 4px;
    }
    .bluehotel-vader-emoji {
        font-size: 38px;
    }
    .bluehotel-vader-temp {
        font-size: 26px;
    }
}
