/**
 * Website Builder Vergleich - Extended Components CSS
 *
 * Styles for Quick Comparison Bar, Detail Cards, FAQ Section, Legal Content
 *
 * @package WebsiteBuilderVergleich
 */

/* ==========================================================================
   3-SCHRITTE INFOGRAFIK (zwischen Hero und Top-3)
   ========================================================================== */

.wbv-steps-section {
    padding: 30px 0;
    background: #3b82f6;
    text-align: center;
}

.wbv-steps-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 24px 0;
}

.wbv-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.wbv-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
}

.wbv-step__circle {
    position: relative;
    width: 70px;
    height: 70px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wbv-step__circle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.wbv-step__number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #fbbf24;
    color: #1a1a2e;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wbv-step__icon {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.wbv-step__icon svg {
    width: 100%;
    height: 100%;
}

.wbv-step__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wbv-step__title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.wbv-step__desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.wbv-step__connector {
    width: 40px;
    height: 24px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

.wbv-step__connector svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .wbv-steps {
        flex-direction: column;
        gap: 16px;
    }

    .wbv-step {
        flex-direction: row;
        width: 100%;
        max-width: 280px;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        gap: 16px;
    }

    .wbv-step__circle {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .wbv-step__icon {
        width: 22px;
        height: 22px;
    }

    .wbv-step__content {
        text-align: left;
    }

    .wbv-step__connector {
        display: none;
    }
}

/* ==========================================================================
   TOP-3 QUICK COMPARISON (Podium between Hero and Main Table)
   ========================================================================== */

.wbv-top3 {
    padding: 0 0 30px 0;
    margin-top: -20px;
    background: #3b82f6;
    position: relative;
    z-index: 1;
}

.wbv-top3__cards {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
}

/* Base card styles */
.wbv-top3__card {
    background: #ffffff;
    border-radius: 8px;
    padding: 12px 14px;
    position: relative;
    z-index: 1;
    overflow: visible;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.wbv-top3__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 2; /* Slightly higher when hovered, but still below header */
}

/* Secondary cards (#2 and #3) */
.wbv-top3__card--secondary {
    flex: 1;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.wbv-top3__card--secondary:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Primary card (#1 - center, taller like a podium) */
.wbv-top3__card--primary {
    flex: 1;
    border: 3px solid #fbbf24;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 24px 18px 16px 18px;
    margin-top: 40px;
}

.wbv-top3__card--primary:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Rank badge (same style as toplist) */
.wbv-top3__rank {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: #3b82f6;
    border-radius: 12px;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.wbv-top3__rank-number {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

/* Primary card (#1) - golden, same size as others */
.wbv-top3__card--primary .wbv-top3__rank {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.wbv-top3__card--primary .wbv-top3__rank-number {
    color: #1a1a2e;
}

/* Badge for #1 */
.wbv-top3__badge {
    display: block;
    background: linear-gradient(135deg, #f5a623 0%, #e8970f 100%);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 auto 8px auto;
    width: fit-content;
}

/* Card inner layout (centered) */
.wbv-top3__card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

/* Logo */
.wbv-top3__logo {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-top: 40px;
    line-height: 0;
}

.wbv-top3__logo img {
    width: 180px;
    height: 75px;
    object-fit: contain;
}

.wbv-top3__card--primary .wbv-top3__logo img {
    width: 270px;
    height: 112px;
}

/* Content */
.wbv-top3__content {
    flex: 1;
    min-width: 0;
    text-align: center;
    margin-top: 0;
}

.wbv-top3__name {
    display: none;
}

/* Stars and rating */
.wbv-top3__stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.wbv-top3__stars-icons {
    color: #f5a623;
    font-size: 16px;
    letter-spacing: 0px;
}

.wbv-top3__stars strong {
    font-size: 18px;
    color: #1f2937;
}

/* Vote count */
.wbv-top3__votes {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

/* Promo Text */
.wbv-top3__price {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}

/* CTA Button */
.wbv-top3__cta {
    display: inline-block;
    background: #3b82f6;
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s ease;
    animation: pulse-cta 2s ease-in-out infinite;
}

.wbv-top3__cta:hover {
    background: #2563eb;
    color: #ffffff !important;
    animation: none;
}

@keyframes pulse-cta {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
    }
}

/* Deal Badge in Top-3 Cards (positioned top-right) */
.wbv-top3__deal-badge {
    position: absolute;
    top: -43px;
    right: -10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    background: #dc3545;
    border: 3px solid #fdd835;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 10;
    text-align: center;
    padding: 9px;
    box-sizing: border-box;
    transform: rotate(12deg);
    animation: wbv-badge-pulse 2s ease-in-out infinite;
}

@keyframes wbv-badge-pulse {
    0%, 100% { transform: rotate(12deg) scale(1); }
    50% { transform: rotate(12deg) scale(1.05); }
}

.wbv-top3__deal-badge-text {
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.wbv-top3__deal-badge-timer {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
    line-height: 1;
    margin-top: 2px;
}

/* Primary card gets slightly larger badge */
.wbv-top3__card--primary .wbv-top3__deal-badge {
    width: 94px;
    height: 94px;
    top: -47px;
    right: -12px;
}

.wbv-top3__card--primary .wbv-top3__deal-badge-text {
    font-size: 11px;
    max-width: 80px;
}

.wbv-top3__card--primary .wbv-top3__deal-badge-timer {
    font-size: 14px;
}

/* Two-column layout for content + Testurteil */
.wbv-top3__columns {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.wbv-top3__columns .wbv-top3__content {
    flex: 1;
    min-width: 0;
}

.wbv-top3__testurteil {
    flex-shrink: 0;
}

.wbv-top3__testurteil .wbv-testurteil {
    transform: scale(0.85);
    transform-origin: center top;
}

/* Responsive */
@media (max-width: 768px) {
    .wbv-top3 {
        padding: 0 0 30px 0;
    }

    .wbv-top3__cards {
        flex-direction: column;
        gap: 40px;
    }

    /* Primary card first on mobile */
    .wbv-top3__card--primary {
        order: -1;
        margin-top: 30px;
    }

    .wbv-top3__card--secondary {
        margin-top: 30px;
    }

    .wbv-top3__card {
        flex: none;
        width: 100%;
    }

    /* Smaller badges on mobile */
    .wbv-top3__rank {
        width: 48px;
        height: 48px;
        min-width: 48px;
        top: -24px;
    }

    .wbv-top3__rank-number {
        font-size: 24px;
    }

    .wbv-top3__columns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .wbv-top3__testurteil .wbv-testurteil {
        transform: scale(0.8);
    }

    /* Deal badge on mobile */
    .wbv-top3__deal-badge {
        width: 76px;
        height: 76px;
        top: -38px;
        right: -8px;
    }

    .wbv-top3__deal-badge-timer {
        font-size: 12px;
    }

    .wbv-top3__deal-badge-text {
        font-size: 8px;
    }

    .wbv-top3__card--primary .wbv-top3__deal-badge {
        width: 85px;
        height: 85px;
        top: -43px;
    }
}

/* ==========================================================================
   AUTOREN-EMPFEHLUNGS-BUBBLE (Hover über Testsieger)
   ========================================================================== */

.wbv-top3__card--primary {
    position: relative;
    overflow: visible;
    z-index: 10; /* Keep low - header has z-index: 1000 */
}

.wbv-empfehlung-bubble {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%) translateX(10px);
    width: 340px;
    background: #ffffff;
    border: 3px solid #fbbf24;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease 0.2s, transform 0.2s ease 0.2s, visibility 0.2s ease 0.2s;
    z-index: 99999;
    pointer-events: none;
    margin-right: 15px;
    isolation: isolate;
}

.wbv-top3__card--primary:hover .wbv-empfehlung-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}

/* Pfeil nach rechts (zeigt auf die Karte) */
.wbv-empfehlung-bubble__arrow {
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #ffffff;
}

.wbv-empfehlung-bubble__arrow::before {
    content: '';
    position: absolute;
    right: -1px;
    top: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #fbbf24;
    z-index: -1;
}

/* Header mit Foto und Autor-Info */
.wbv-empfehlung-bubble__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.wbv-empfehlung-bubble__author-photo {
    flex-shrink: 0;
    text-decoration: none;
}

.wbv-empfehlung-bubble__author-photo img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid #1e3a5f;
    object-fit: cover;
    transition: border-color 0.2s ease;
}

.wbv-empfehlung-bubble__author-photo:hover img {
    border-color: #fbbf24;
}

.wbv-empfehlung-bubble__author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wbv-empfehlung-bubble__name {
    font-size: 15px;
    font-weight: 600;
    color: #1e3a5f;
    text-decoration: none;
    transition: color 0.2s ease;
}

.wbv-empfehlung-bubble__name:hover {
    color: #fbbf24;
}

.wbv-empfehlung-bubble__update {
    font-size: 12px;
    color: #666;
}

/* Text-Bereich */
.wbv-empfehlung-bubble__text {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
}

.wbv-empfehlung-bubble__text p {
    margin: 0 0 10px;
}

.wbv-empfehlung-bubble__text p:last-of-type {
    margin-bottom: 0;
}

.wbv-empfehlung-bubble__signatur {
    margin-top: 14px;
}

.wbv-empfehlung-bubble__gruss-text {
    font-size: 13px;
    color: #555;
    display: block;
    margin-bottom: 2px;
}

.wbv-empfehlung-bubble__gruss-name {
    font-family: 'Brush Script MT', 'Segoe Script', 'Bradley Hand', cursive;
    font-size: 22px;
    font-weight: normal;
    color: #1e3a5f;
    display: block;
}

/* Mobile: Bubble ausblenden (kein Hover) */
@media (max-width: 768px) {
    .wbv-empfehlung-bubble {
        display: none;
    }
}

/* ==========================================================================
   DETAIL CARDS SECTION - Redesigned like topcasinosus.com
   ========================================================================== */

.wbv-detail-cards-section {
    padding: 40px 0;
    background: #f5f5f5;
}

.wbv-detail-cards-section__title {
    font-size: 32px;
    font-weight: 700;
    color: #2d1f3d;
    text-align: center;
    margin-bottom: 90px;
}

.wbv-detail-cards-section__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 30px;
}

/* ==========================================================================
   DETAIL CARD - Full redesign like topcasinosus.com
   ========================================================================== */

.wbv-detail-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: visible;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wbv-detail-card[data-href] {
    cursor: pointer;
}

.wbv-detail-card[data-href]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wbv-clickable {
    cursor: pointer;
}

/* Header Strip */
.wbv-detail-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #2d1f3d;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}

.wbv-detail-card__header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wbv-detail-card__badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 3px;
    color: #000;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.wbv-detail-card__rank {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.wbv-detail-card__logo {
    max-height: 28px;
    max-width: 80px;
    object-fit: contain;
    background: #fff;
    padding: 4px 8px;
    border-radius: 4px;
}

.wbv-detail-card__name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.wbv-detail-card__review-link {
    font-size: 12px;
    color: #FFD700;
    font-weight: 500;
}

.wbv-detail-card__review-link:hover {
    color: #fff;
    text-decoration: underline;
}

.wbv-detail-card__header-right {
    display: flex;
    align-items: center;
}

/* Banner / Promo Image */
.wbv-detail-card__banner {
    position: relative;
    min-height: 100px;
    background: linear-gradient(135deg, #2d1f3d 0%, #4a3560 100%);
}

.wbv-detail-card__banner-image {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.wbv-detail-card__banner-gradient {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    background: linear-gradient(135deg, #2d1f3d 0%, #4a3560 100%);
    padding: 20px;
}

/* Banner overlay for placeholder banners with text */
.wbv-detail-card__banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.wbv-detail-card__banner-casino-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.wbv-detail-card__banner-text {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    max-width: 95%;
}

/* Quick Facts Row - Kompakt */
.wbv-detail-card__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 20px;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
}

.wbv-detail-card__facts-grid {
    display: flex;
    flex: 1;
    gap: 10px;
}

.wbv-detail-card__fact {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f8f9fa;
    border-radius: 25px;
    border: 1px solid #e9ecef;
}

.wbv-detail-card__fact-icon {
    font-size: 18px;
    line-height: 1;
}

.wbv-detail-card__fact-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.wbv-detail-card__fact-label {
    font-size: 14px;
    color: #666;
}

.wbv-detail-card__fact-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

@media (max-width: 767px) {
    .wbv-detail-card__facts-grid {
        flex-wrap: wrap;
    }

    .wbv-detail-card__fact {
        flex: 1 1 45%;
    }
}

.wbv-detail-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: #28a745;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    white-space: nowrap;
    transition: all 0.2s ease;
    min-width: 140px;
}

.wbv-detail-card__cta:hover {
    background: #f5a623;
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .wbv-detail-card__facts {
        flex-direction: column;
    }

    .wbv-detail-card__cta {
        width: 100%;
    }
}

/* Pros & Cons Wrapper with Testurteil */
.wbv-detail-card__pros-cons-wrapper {
    display: flex;
    gap: 20px;
    padding: 16px;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    align-items: flex-start;
}

.wbv-detail-card__pros-cons-wrapper .wbv-detail-card__pros-cons {
    flex: 1;
    padding: 0;
    border-bottom: none;
}

.wbv-detail-card__testurteil {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .wbv-detail-card__pros-cons-wrapper {
        flex-direction: column;
    }

    .wbv-detail-card__testurteil {
        align-self: center;
    }
}

/* Pros & Cons - Side by side */
.wbv-detail-card__pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

@media (min-width: 768px) {
    .wbv-detail-card__pros-cons {
        grid-template-columns: 1fr 1fr;
    }
}

.wbv-detail-card__pros,
.wbv-detail-card__cons {
    padding: 16px 20px;
    border-radius: 16px;
}

.wbv-detail-card__pros {
    background: rgba(40, 167, 69, 0.06);
    border: 1px solid rgba(40, 167, 69, 0.15);
}

.wbv-detail-card__cons {
    background: rgba(220, 53, 69, 0.06);
    border: 1px solid rgba(220, 53, 69, 0.15);
}

.wbv-detail-card__pros h4,
.wbv-detail-card__cons h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wbv-detail-card__pros h4 {
    color: #28a745;
}

.wbv-detail-card__cons h4 {
    color: #dc3545;
}

.wbv-detail-card__pros ul,
.wbv-detail-card__cons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wbv-detail-card__pros li,
.wbv-detail-card__cons li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.5;
}

.wbv-detail-card__pros li:last-child,
.wbv-detail-card__cons li:last-child {
    margin-bottom: 0;
}

.wbv-check {
    color: #28a745;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 16px;
}

.wbv-x {
    color: #dc3545;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 16px;
}

/* Deal Badge in Detail Card (Rank 1 only) */
.wbv-detail-card--has-deal {
    position: relative;
    overflow: visible;
}

.wbv-detail-card__deal-badge {
    position: absolute;
    top: -30px;
    right: -70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: #dc3545;
    border: 3px solid #fdd835;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    transform: rotate(12deg);
    animation: pulse-deal 2s ease-in-out infinite;
}

.wbv-detail-card__deal-badge-text {
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.wbv-detail-card__deal-badge-timer {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
    line-height: 1;
    margin-top: 2px;
}

@keyframes pulse-deal {
    0%, 100% {
        transform: rotate(12deg) scale(1);
    }
    50% {
        transform: rotate(12deg) scale(1.05);
    }
}

@media (max-width: 767px) {
    .wbv-detail-card__deal-badge {
        width: 80px;
        height: 80px;
        top: -15px;
        right: 10px;
    }

    .wbv-detail-card__deal-badge-text {
        font-size: 9px;
    }

    .wbv-detail-card__deal-badge-timer {
        font-size: 12px;
    }
}

/* Score & Features Row */
.wbv-detail-card__score-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

/* Main content area */
.wbv-detail-card__main {
    padding: 8px 20px 20px 20px;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

/* Logo */
.wbv-detail-card__logo-large {
    flex-shrink: 0;
    position: relative;
}

.wbv-detail-card__logo-large img {
    max-width: 360px;
    max-height: 140px;
    object-fit: contain;
}

/* Description row */
.wbv-detail-card__description-row {
    margin-top: 8px;
}

.wbv-detail-card__description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* CTA row */
.wbv-detail-card__cta-row {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   PRICE ANCHOR (Price Anchoring Display)
   Shows above CTA buttons when price_current is set
   ========================================================================== */

.wbv-price-anchor {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

/* Container for strikethrough and new price - keeps them visually connected */
.wbv-price-anchor__prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.wbv-price-anchor__regular {
    color: #1e293b;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

/* Red strikethrough line */
.wbv-price-anchor__regular::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    height: 3px;
    background: #dc2626;
    transform: rotate(-8deg);
}

.wbv-price-anchor__current {
    color: #16a34a;
    font-weight: 700;
    font-size: 16px;
}

.wbv-price-anchor__current::before {
    content: 'jetzt ';
    font-weight: 500;
}

.wbv-price-anchor__savings {
    background: #dc2626;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 4px;
}

/* Compact version for Top-3 cards */
.wbv-price-anchor--compact {
    margin-bottom: 10px;
}

.wbv-price-anchor--compact .wbv-price-anchor__regular {
    font-size: 12px;
}

.wbv-price-anchor--compact .wbv-price-anchor__current {
    font-size: 14px;
}

.wbv-price-anchor--compact .wbv-price-anchor__savings {
    font-size: 10px;
    padding: 2px 6px;
}

/* Push score circle and everything after it to the right */
.wbv-detail-card__score-row > .wbv-detail-card__score-circle {
    margin-left: auto;
}

/* Stars box in score row */
.wbv-detail-card__stars-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

/* Testurteil inline in score row */
.wbv-detail-card__testurteil-inline {
    flex-shrink: 0;
}

.wbv-detail-card__testurteil-inline .wbv-testurteil {
    transform: scale(0.7);
    transform-origin: right center;
}

/* Features row (separate) */
.wbv-detail-card__features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 20px 24px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

@media (max-width: 767px) {
    .wbv-detail-card__features-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wbv-detail-card__score-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #28a745;
    background: #fff;
}

.wbv-detail-card__score-circle.wbv-score-excellent {
    border-color: #28a745;
}

.wbv-detail-card__score-circle.wbv-score-great {
    border-color: #8bc34a;
}

.wbv-detail-card__score-circle.wbv-score-good {
    border-color: #ffc107;
}

.wbv-detail-card__score-value {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.wbv-detail-card__score-label {
    font-size: 18px;
    font-weight: 600;
    color: #28a745;
}

.wbv-detail-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wbv-detail-card__feature-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
}

.wbv-detail-card__feature-tag:hover {
    background: #f0f7ff;
    border-color: #3b82f6;
}

.wbv-feature-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

/* Body / Description */
.wbv-detail-card__body {
    padding: 16px;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    background: #fff;
}

.wbv-detail-card__body p {
    margin: 0 0 12px;
}

.wbv-detail-card__body p:last-child {
    margin-bottom: 0;
}

/* Why Play Section */
.wbv-detail-card__why-play {
    padding: 16px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.wbv-detail-card__why-play h4 {
    font-size: 14px;
    font-weight: 700;
    color: #2d1f3d;
    margin: 0 0 8px;
}

.wbv-detail-card__why-play p {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* ==========================================================================
   BRANCHEN-EMPFEHLUNGEN
   ========================================================================== */

.wbv-branchen-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.wbv-branchen-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    text-align: center;
    margin: 0 0 8px 0;
}

.wbv-branchen-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin: 0 0 32px 0;
}

.wbv-branchen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 992px) {
    .wbv-branchen-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .wbv-branchen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .wbv-branchen-grid {
        grid-template-columns: 1fr;
    }
}

.wbv-branche-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
}

.wbv-branche-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.wbv-branche-icon {
    width: 40px;
    height: 40px;
    color: #3b82f6;
}

.wbv-branche-icon svg {
    width: 100%;
    height: 100%;
}

.wbv-branche-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.wbv-branche-empfehlung {
    font-size: 13px;
    font-weight: 500;
    color: #3b82f6;
}

.wbv-branche-card:hover .wbv-branche-empfehlung {
    color: #1e40af;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.wbv-faq-section {
    padding: 64px 0;
    background: linear-gradient(135deg, #1B4D4D 0%, #15151c 100%);
    color: #fff;
}

.wbv-faq-section__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .wbv-faq-section__inner {
        grid-template-columns: 2fr 1fr;
        align-items: flex-start;
    }
}

.wbv-faq-section__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #fff;
}

.wbv-faq-section__illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wbv-faq-section__illustration-placeholder {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
}

/* FAQ Accordion */
.wbv-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wbv-faq-accordion__item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.wbv-faq-accordion__trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    min-height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #fff;
    transition: background 0.2s ease;
}

.wbv-faq-accordion__trigger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.wbv-faq-accordion__question {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    padding-right: 16px;
}

.wbv-faq-accordion__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.wbv-faq-accordion__trigger[aria-expanded="true"] .wbv-faq-accordion__icon {
    transform: rotate(180deg);
}

.wbv-faq-accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.wbv-faq-accordion__panel.is-open {
    max-height: 500px;
}

.wbv-faq-accordion__answer {
    padding: 0 20px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.wbv-faq-accordion__answer p {
    margin: 0 0 12px;
}

.wbv-faq-accordion__answer p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   LEGAL CONTENT SECTION
   ========================================================================== */

.wbv-legal-section {
    padding: 48px 0;
    background: #fff;
}

.wbv-legal-section__content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.wbv-legal-section__content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px;
}

.wbv-legal-section__content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #444;
    margin: 24px 0 12px;
}

.wbv-legal-section__content p {
    margin: 0 0 16px;
}

.wbv-legal-section__content ul,
.wbv-legal-section__content ol {
    margin: 0 0 16px;
    padding-left: 24px;
}

.wbv-legal-section__content li {
    margin-bottom: 8px;
}

.wbv-legal-section__content a {
    color: #1976d2;
}

.wbv-legal-section__content a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   HERO ILLUSTRATION - Right side image
   ========================================================================== */

.wbv-hero-illustration {
    display: none;
}

@media (min-width: 992px) {
    .wbv-hero.has-illustration .wbv-hero-inner {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .wbv-hero.has-illustration .wbv-hero-content {
        flex: 1;
    }

    .wbv-hero-illustration {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        position: relative;
    }

    /* Standard image with gradient overlay */
    .wbv-hero-illustration::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 80px;
        height: 100%;
        background: linear-gradient(to right, #3b82f6 0%, transparent 100%);
        z-index: 2;
        pointer-events: none;
    }

    .wbv-hero-illustration img {
        max-width: 300px;
        height: auto;
        max-height: 160px;
        object-fit: contain;
        border-radius: 8px;
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    }

    /* For transparent PNGs - fade on all sides using mask */
    .wbv-hero-illustration.transparent-bg {
        position: relative;
    }

    .wbv-hero-illustration.transparent-bg::before {
        display: none;
    }

    .wbv-hero-illustration.transparent-bg img {
        max-width: 400px;
        max-height: 200px;
        border-radius: 0;
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
        -webkit-mask-image:
            linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%),
            linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
        -webkit-mask-composite: source-in;
        mask-image:
            linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%),
            linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
        mask-composite: intersect;
    }
}

/* ==========================================================================
   PER-CASINO DISCLAIMER ROW
   ========================================================================== */

.wbv-disclaimer-row td {
    padding: 8px 15px !important;
    font-size: 10px !important;
    color: #888 !important;
    background: #fafafa !important;
    border-top: 1px dashed #ddd !important;
    text-align: left !important;
}

/* ==========================================================================
   BADGE COLORS (shared)
   ========================================================================== */

.wbv-badge-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
}

.wbv-badge-silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    color: #333;
}

.wbv-badge-bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
    color: #fff;
}

.wbv-badge-blue {
    background: linear-gradient(135deg, #2c64e3 0%, #1e3a8a 100%);
    color: #fff;
}

.wbv-badge-green {
    background: #2e7d32;
}

.wbv-badge-purple {
    background: #6a1b9a;
}

/* ==========================================================================
   SEO CONTENT SECTION - White background, long-form content
   ========================================================================== */

.wbv-seo-section {
    padding: 48px 0;
    background: #fff;
}

.wbv-seo-section__content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

.wbv-seo-section__content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2d1f3d;
    margin: 0 0 16px;
    padding-top: 24px;
}

.wbv-seo-section__content h2:first-child {
    padding-top: 0;
}

.wbv-seo-section__content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 24px 0 12px;
}

.wbv-seo-section__content p {
    margin: 0 0 16px;
}

.wbv-seo-section__content ul,
.wbv-seo-section__content ol {
    margin: 0 0 16px;
    padding-left: 24px;
}

.wbv-seo-section__content li {
    margin-bottom: 8px;
}

.wbv-seo-section__content strong {
    color: #333;
}

.wbv-seo-section__content a {
    color: #1976d2;
}

.wbv-seo-section__content a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 767px) {
    .wbv-detail-cards-section__title {
        font-size: 24px;
    }

    .wbv-detail-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 12px;
    }

    .wbv-detail-card__header-left {
        flex-wrap: wrap;
    }

    .wbv-detail-card__name {
        font-size: 14px;
    }

    .wbv-detail-card__banner-casino-name {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .wbv-detail-card__banner-text {
        font-size: 16px;
    }

    .wbv-detail-card__banner-overlay {
        padding: 8px 12px;
    }

    .wbv-detail-card__banner-image {
        height: 100px;
    }

    .wbv-detail-card__facts {
        padding: 12px;
    }

    .wbv-detail-card__pros-cons {
        padding: 12px;
    }

    .wbv-faq-section {
        padding: 32px 0;
    }

    .wbv-faq-section__title {
        font-size: 20px;
    }

    .wbv-faq-section__illustration {
        order: -1;
    }

    .wbv-faq-section__illustration-placeholder {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }

    .wbv-legal-section {
        padding: 32px 0;
    }

    .wbv-legal-section__content {
        font-size: 13px;
    }

    .wbv-legal-section__content h2 {
        font-size: 18px;
    }
}

/* ==========================================================================
   SOCIAL PROOF BUBBLE (Hover Speech Bubble below CTA)
   ========================================================================== */

.wbv-cta-wrapper {
    position: relative;
    display: inline-block;
}

.wbv-social-proof-bubble {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    margin-top: 8px;
    background: #ffffff;
    border: 2px solid #f5a623;
    border-radius: 25px;
    padding: 10px 20px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    font-size: 13px;
    font-weight: 600;
    color: #333333;
}

.wbv-cta-button:hover + .wbv-social-proof-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Arrow pointing up */
.wbv-social-proof-bubble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f5a623;
}

.wbv-social-proof-bubble::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

@media (max-width: 767px) {
    .wbv-social-proof-bubble {
        font-size: 11px;
        padding: 8px 14px;
    }
}

/* ==========================================================================
   FEATURE TOOLTIP
   ========================================================================== */

.wbv-has-tooltip {
    cursor: help;
    position: relative;
}


.wbv-feature-tooltip {
    position: fixed;
    z-index: 10000;
    max-width: 280px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    pointer-events: auto;
}

.wbv-feature-tooltip--visible {
    opacity: 1;
    transform: translateY(0);
}

.wbv-feature-tooltip--below {
    transform: translateY(-5px);
}

.wbv-feature-tooltip--below.wbv-feature-tooltip--visible {
    transform: translateY(0);
}

.wbv-feature-tooltip__content {
    background: #1a1a2e;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.wbv-feature-tooltip__arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.wbv-feature-tooltip:not(.wbv-feature-tooltip--below) .wbv-feature-tooltip__arrow {
    bottom: -6px;
    border-top: 6px solid #1a1a2e;
}

.wbv-feature-tooltip--below .wbv-feature-tooltip__arrow {
    top: -6px;
    border-bottom: 6px solid #1a1a2e;
}

/* ==========================================================================
   BONUS/OFFER TOOLTIP (JS-generated popup)
   ========================================================================== */

.wbv-cell-bonus {
    position: relative;
}

.wbv-bonus-text {
    cursor: pointer;
    border-bottom: 1px dashed currentColor;
    transition: color 0.2s ease;
}

.wbv-bonus-text:hover {
    color: #3b82f6;
}

.wbv-bonus-tooltip {
    position: fixed;
    z-index: 10001;
    width: 300px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.wbv-bonus-tooltip--visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.wbv-bonus-tooltip__arrow {
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.wbv-bonus-tooltip--left .wbv-bonus-tooltip__arrow {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    border-left-color: #ffffff;
}

.wbv-bonus-tooltip--right .wbv-bonus-tooltip__arrow {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    border-right-color: #ffffff;
}

.wbv-bonus-tooltip__content {
    padding: 20px;
}

.wbv-bonus-tooltip__logo {
    text-align: center;
    margin-bottom: 16px;
}

.wbv-bonus-tooltip__logo img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
}

.wbv-bonus-tooltip__headline {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.4;
}

.wbv-bonus-tooltip__subtext {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.5;
}

.wbv-bonus-tooltip__cta {
    display: block;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wbv-bonus-tooltip__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.wbv-bonus-tooltip__tc {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-top: 12px;
}

.wbv-bonus-tooltip__trust {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.wbv-bonus-tooltip__trust-badge {
    font-size: 10px;
    padding: 4px 8px;
    background: #f0f0f0;
    border-radius: 4px;
    color: #666;
}

/* ==========================================================================
   INTERACTIVE STAR RATING
   ========================================================================== */

.wbv-rating-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

.wbv-stars {
    display: flex;
    gap: 2px;
}

.wbv-stars--interactive .wbv-star {
    cursor: pointer;
    transition: transform 0.15s ease, color 0.15s ease;
}

.wbv-stars--interactive .wbv-star:hover {
    transform: scale(1.2);
}

.wbv-star {
    font-size: 18px;
    line-height: 1;
}

.wbv-star-filled {
    color: #f5a623;
}

.wbv-star-empty {
    color: #ddd;
}

.wbv-rating-votes {
    font-size: 11px;
    color: #888;
}

.wbv-rating-status {
    font-size: 11px;
    color: #666;
    margin-top: 4px;
    transition: color 0.2s ease;
}

.wbv-rating-status--preview {
    color: #f5a623;
    font-weight: 600;
}

.wbv-rating-status--saving {
    color: #3b82f6;
}

.wbv-rating-status--success {
    color: #22c55e;
    font-weight: 600;
}

.wbv-rating-status--error {
    color: #ef4444;
}

.wbv-rating-status--voted {
    color: #888;
    font-style: italic;
}

/* ==========================================================================
   OFFER TRIGGER (Content block that triggers tooltip)
   ========================================================================== */

.wbv-offer-trigger {
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.wbv-offer-trigger:hover {
    background: transparent;
}

.wbv-offer-trigger::after {
    content: 'ℹ️';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.wbv-offer-trigger:hover::after {
    opacity: 0.7;
}

/* ==========================================================================
   OFFER TOOLTIP (Appended to body via JS)
   ========================================================================== */

.wbv-offer-tooltip {
    width: 320px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    padding: 0;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    overflow: hidden;
}

.wbv-offer-tooltip--visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
}

/* Arrow */
.wbv-offer-tooltip__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

/* Arrow pointing left (tooltip on right side of trigger) */
.wbv-offer-tooltip--right .wbv-offer-tooltip__arrow {
    left: -10px;
    right: auto;
    border-right: 12px solid #ffffff;
    border-left: none;
    filter: drop-shadow(-2px 0 2px rgba(0, 0, 0, 0.1));
}

/* Arrow pointing right (tooltip on left side of trigger) */
.wbv-offer-tooltip--left .wbv-offer-tooltip__arrow {
    right: -10px;
    left: auto;
    border-left: 12px solid #ffffff;
    border-right: none;
    filter: drop-shadow(2px 0 2px rgba(0, 0, 0, 0.1));
}

.wbv-offer-tooltip__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.wbv-offer-tooltip__logo {
    margin-bottom: 16px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
}

.wbv-offer-tooltip__logo img {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
}

.wbv-offer-tooltip__provider {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.wbv-offer-tooltip__headline {
    font-size: 20px;
    font-weight: 700;
    color: #2e7d32;
    line-height: 1.3;
    margin-bottom: 12px;
}

.wbv-offer-tooltip__subtext {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.wbv-offer-tooltip__cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.wbv-offer-tooltip__cta:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* Mobile - smaller tooltip width */
@media (max-width: 992px) {
    .wbv-offer-tooltip {
        width: 280px;
    }

    .wbv-offer-tooltip__content {
        padding: 20px;
    }

    .wbv-offer-tooltip__headline {
        font-size: 18px;
    }
}

/* ==========================================================================
   EXIT-INTENT OVERLAY
   ========================================================================== */

.wbv-exit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.wbv-exit-overlay--visible {
    opacity: 1;
}

.wbv-exit-overlay--closing {
    opacity: 0;
}

.wbv-exit-overlay__card {
    background: #fff;
    border-radius: 12px;
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.wbv-exit-overlay--visible .wbv-exit-overlay__card {
    transform: scale(1);
}

.wbv-exit-overlay__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f97316;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1;
    transition: all 0.2s;
}

.wbv-exit-overlay__close:hover {
    background: #ea580c;
    color: #fff;
}

.wbv-exit-overlay__headline {
    text-align: center;
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #333;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

/* Browser Mockup */
.wbv-browser-mockup {
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.wbv-browser-mockup__bar {
    background: #f0f0f0;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #d0d0d0;
}

.wbv-browser-mockup__dots {
    display: flex;
    gap: 4px;
}

.wbv-browser-mockup__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.wbv-browser-mockup__dots span:nth-child(1) { background: #ff5f57; }
.wbv-browser-mockup__dots span:nth-child(2) { background: #ffbd2e; }
.wbv-browser-mockup__dots span:nth-child(3) { background: #28c940; }

.wbv-browser-mockup__url {
    flex: 1;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
    color: #666;
}

.wbv-browser-mockup__screenshot {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    object-position: top;
    display: block;
    cursor: pointer;
    transition: opacity 0.2s;
}

.wbv-browser-mockup__screenshot:hover {
    opacity: 0.95;
}

/* Provider Info */
.wbv-exit-provider-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.wbv-exit-provider-logo {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.wbv-exit-provider-meta {
    flex: 1;
}

.wbv-exit-stars {
    color: #f5a623;
    font-size: 18px;
    margin-bottom: 4px;
}

.wbv-exit-stars span {
    color: #888;
    font-size: 13px;
    margin-left: 4px;
}

.wbv-exit-testurteil {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}

.wbv-exit-price {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a5f;
}

/* Features Grid */
.wbv-exit-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #333;
}

.wbv-exit-features span::before {
    content: "✓ ";
    color: #28a745;
    font-weight: 700;
}

/* Quote */
.wbv-exit-quote {
    background: #f8f9fa;
    border-left: 3px solid #1e3a5f;
    padding: 12px 16px;
    margin: 16px 0;
    border-radius: 0 8px 8px 0;
}

.wbv-exit-quote p {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    font-style: italic;
    margin: 0 0 4px;
}

.wbv-exit-quote cite {
    font-size: 12px;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

/* Deal Banner */
.wbv-exit-deal {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 10px 16px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    margin-bottom: 16px;
}

.wbv-exit-deal-timer {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-weight: 700;
    background: #dc3545;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 4px;
}

/* CTA Button */
.wbv-exit-cta {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    color: #fff !important;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.2s;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    box-sizing: border-box;
}

.wbv-exit-cta:hover {
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
    color: #fff !important;
}

/* Trust Line */
.wbv-exit-trust {
    text-align: center;
    font-size: 12px;
    color: #888;
}

/* ==========================================================================
   SIMPLIFIED EXIT INTENT OVERLAY
   ========================================================================== */

.wbv-exit-overlay__card--simple {
    max-width: 420px;
    padding: 32px;
    border: 4px solid #f97316;
    animation: pulse-exit-border 1.2s ease-in-out infinite;
}

@keyframes pulse-exit-border {
    0%, 100% {
        border-color: #f97316;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(249, 115, 22, 0.4);
    }
    50% {
        border-color: #fb923c;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 20px 4px rgba(249, 115, 22, 0.3);
    }
}

/* Entire overlay is clickable */
.wbv-exit-overlay--visible {
    cursor: pointer;
}

.wbv-exit-overlay--visible .wbv-exit-overlay__card {
    cursor: pointer;
}

.wbv-exit-overlay__card--simple:hover {
    animation: none;
    border-color: #ea580c;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35), 0 0 25px 5px rgba(249, 115, 22, 0.4);
}

.wbv-exit-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

/* Header with Logo */
.wbv-exit-simple__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.wbv-exit-simple__logo {
    width: 140px;
    height: auto;
    object-fit: contain;
}

.wbv-exit-simple__badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #333;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 4px;
}

/* Testurteil */
.wbv-exit-simple__testurteil {
    display: flex;
    justify-content: center;
}

.wbv-exit-simple__testurteil .wbv-testurteil {
    transform: scale(1);
}

/* Price */
.wbv-exit-simple__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 18px;
}

.wbv-exit-simple__price-label {
    color: #666;
    font-size: 14px;
}

.wbv-exit-simple__price-regular {
    color: #1e293b;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

/* Red strikethrough line */
.wbv-exit-simple__price-regular::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    height: 3px;
    background: #dc2626;
    transform: rotate(-8deg);
}

.wbv-exit-simple__price-current {
    font-size: 24px;
    font-weight: 700;
    color: #28a745;
}

.wbv-exit-simple__price-info {
    color: #666;
    font-size: 12px;
}

/* Editorial Quote */
.wbv-exit-simple__quote {
    margin: 0;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
}

.wbv-exit-simple__quote p {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-style: italic;
    color: #333;
    line-height: 1.5;
}

.wbv-exit-simple__quote cite {
    display: flex;
    align-items: center;
    gap: 10px;
    font-style: normal;
    font-size: 13px;
    color: #666;
}

.wbv-exit-simple__quote cite img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

/* CTA Button */
.wbv-exit-simple__cta {
    display: inline-block;
    width: 100%;
    background: #f97316;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 8px;
    transition: all 0.2s;
    animation: pulse-cta 2s ease-in-out infinite;
}

.wbv-exit-simple__cta:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    animation: none;
}

/* Mobile Responsive - Simplified */
@media (max-width: 480px) {
    .wbv-exit-overlay__card--simple {
        padding: 24px 20px;
        max-width: 100%;
    }

    .wbv-exit-simple__logo {
        width: 120px;
    }

    .wbv-exit-simple__testurteil .wbv-testurteil {
        transform: scale(0.9);
    }

    .wbv-exit-simple__quote {
        padding: 12px 16px;
    }

    .wbv-exit-simple__quote p {
        font-size: 13px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wbv-exit-overlay {
        padding: 12px;
    }

    .wbv-exit-overlay__card {
        padding: 20px;
        max-height: 85vh;
    }

    .wbv-exit-overlay__headline {
        font-size: 16px;
        padding: 8px 16px;
    }

    .wbv-browser-mockup__screenshot {
        max-height: 180px;
    }

    .wbv-exit-features {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .wbv-exit-provider-info {
        flex-direction: column;
        text-align: center;
    }

    .wbv-exit-provider-logo {
        width: 100px;
    }

    .wbv-exit-cta {
        font-size: 16px;
        padding: 14px 20px;
    }
}

/* ==========================================================================
   MOBILE OVERFLOW FIX - Prevents horizontal scrolling
   ========================================================================== */

@media (max-width: 767px) {
    /* Prevent horizontal overflow on body */
    html,
    body,
    .wbv-toplist-page {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Container constraints */
    .wbv-container,
    .wbv-detail-cards-section,
    .wbv-detail-cards-section__grid,
    .wbv-toplist {
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    /* Top-3 section - allow overflow for rank badges */
    .wbv-top3,
    .wbv-top3__cards {
        max-width: 100%;
        overflow: visible;
        box-sizing: border-box;
    }

    /* Detail Cards - ensure no overflow */
    .wbv-detail-card {
        max-width: 100%;
        overflow: hidden;
        margin-left: 0;
        margin-right: 0;
    }

    /* Deal Badge - keep inside card on mobile */
    .wbv-detail-card__deal-badge {
        right: 5px;
        top: -10px;
        width: 70px;
        height: 70px;
    }

    .wbv-detail-card__deal-badge-text {
        font-size: 8px;
        max-width: 60px;
    }

    .wbv-detail-card__deal-badge-timer {
        font-size: 11px;
    }

    /* Score row - stack on mobile */
    .wbv-detail-card__score-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .wbv-detail-card__score-row > .wbv-detail-card__score-circle {
        margin-left: 0;
    }

    /* Testurteil inline - adjust scale */
    .wbv-detail-card__testurteil-inline .wbv-testurteil {
        transform: scale(0.65);
        transform-origin: center center;
    }

    /* Logo size constraint */
    .wbv-detail-card__logo-large img {
        max-width: 100%;
        max-height: 100px;
    }

    /* Main content padding */
    .wbv-detail-card__main {
        padding: 12px;
    }

    /* Description text size */
    .wbv-detail-card__description {
        font-size: 15px;
    }

    /* Feature tags - wrap and fit */
    .wbv-detail-card__features {
        justify-content: center;
    }

    .wbv-detail-card__feature-tag {
        padding: 10px 14px;
        font-size: 13px;
        flex: 1 1 45%;
        min-width: 140px;
    }

    /* Top-3 Cards - allow overflow for rank badges */
    .wbv-top3__card {
        max-width: 100%;
        overflow: visible;
        margin-top: 30px;
    }

    .wbv-top3__deal-badge {
        right: 5px;
        width: 65px;
        height: 65px;
        top: -32px;
    }

    .wbv-top3__card--primary .wbv-top3__deal-badge {
        width: 75px;
        height: 75px;
        top: -38px;
        right: 5px;
    }

    /* Provider Card constraints */
    .wbv-provider-card {
        max-width: 100%;
        overflow: hidden;
        margin-left: 0 !important;
    }

    .wbv-provider-card.has-ribbon {
        margin-left: 0;
    }

    /* Badge seal - keep inside on mobile */
    .wbv-badge-seal {
        right: 5px;
        top: 5px;
    }

    /* Badge ribbon - no negative margin */
    .wbv-badge-ribbon {
        left: 0;
        border-radius: 0 0 6px 0;
    }

    .wbv-badge-ribbon::before,
    .wbv-badge-ribbon::after {
        display: none;
    }

    /* Section title */
    .wbv-detail-cards-section__title {
        padding: 0 15px;
        margin-bottom: 60px;
    }

    /* Grid padding */
    .wbv-detail-cards-section__grid {
        padding: 20px 10px;
    }
}
