/* Watch Wizard Styles */
.vibe-chip {
    border-radius: 20px;
    padding: 0.5rem 1rem;
    transition: all 0.2s;
    background-color: transparent;
    border: 1px solid #17a2b8;
    color: #17a2b8;
}

.vibe-chip:hover {
    background-color: rgba(23, 162, 184, 0.1);
}

.vibe-chip.active {
    background-color: #17a2b8 !important;
    color: white !important;
    box-shadow: 0 0 10px rgba(23, 162, 184, 0.5);
}

.wizard-card {
    transition: transform 0.2s;
    cursor: pointer;
    border: 1px solid var(--secondary-color);
    overflow: hidden;
    background-color: var(--card-background) !important;
}

.wizard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border-color: #17a2b8;
}

.wizard-card .card-img-top,
.wizard-card .wizard-placeholder {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.wizard-placeholder {
    background-color: #1a202c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #4a5568;
}

.wizard-pitch {
    font-style: italic;
    font-size: 0.9rem;
    color: #ffc107;
    border-left: 3px solid #ffc107;
    padding-left: 10px;
    margin-top: 10px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.wizard-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cine-Match Sifting */
#sifting-counter {
    font-size: 1rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.sifting-option-btn {
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.03);
}

.sifting-option-btn:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #17a2b8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.sifting-teaser {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    line-height: 1.2;
    max-width: 90%;
    margin-top: 5px;
}

/* Final Match Podium */
.winner-card {
    border: 2px solid #ffd700 !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3) !important;
    transform: scale(1.02);
}

.winner-badge-top {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    background: #ffd700;
    color: #000;
    padding: 2px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

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

/* --- Magic Entry Styles --- */
.btn-magic {
    background-color: #6366f1;
    border-color: #6366f1;
    color: white;
}

.btn-magic:hover {
    background-color: #4f46e5;
    border-color: #4338ca;
    color: white;
}

.btn-outline-magic {
    color: #6366f1;
    border-color: #6366f1;
    background-image: none;
    background-color: transparent;
}

.btn-outline-magic:hover {
    color: #fff;
    background-color: #6366f1;
    border-color: #6366f1;
}

#magic-entry-section {
    background-color: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    padding: 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    width: 100%;
    display: block;
}

/* Padding für den inneren Header des Magic Entry */
#magic-entry-section > div:first-child {
    padding: 10px 10px 0 10px;
}

/* Padding für den aufklappbaren Container */
#magic-entry-container {
    padding: 10px;
}

#magic-entry-text {
    width: 100%;
    display: block;
    border: 1px solid rgba(99, 102, 241, 0.3);
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--text-color);
}

#magic-entry-text:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

