.btn-gold-glow {
    background: linear-gradient(135deg, #E6A55C 0%, #F2C975 50%, #C68E48 100%);
    color: #12101F;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(230, 165, 92, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.btn-gold-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(230, 165, 92, 0.6);
}

/* --- Container do Oráculo --- */
.oraculo-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Loader (Usando Classe) */
.oraculo-loading {
    margin-top: 10px;
    font-style: italic;
    font-size: 0.9rem;
    animation: blink 1.5s infinite;
}

@keyframes blink { 0% { opacity: 0.5; } 50% { opacity: 1; } 100% { opacity: 0.5; } }

/* Video Responsive */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: #000;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Adicione no style.css do Plugin */
.oraculo-result-title {
    color: #E6A55C;
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}
.oraculo-result-excerpt {
    color: #ddd;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}
.oraculo-btn-more {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}
.oraculo-btn-more:hover {
    color: #E6A55C;
}
.oraculo-embed-fallback {
    border-radius: 10px;
    width: 100%;
    height: auto;
    display: block;
}