/* ⚔️ ESTILOS MEDIEVAIS PREMIUM PARA O PAINEL RE:VERSE RPG (RVS) ⚔️ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=MedievalSharp&family=Montserrat:wght@400;500;600;700&display=swap');

/* Container Principal - Estilo Pergaminho de Couro Envelhecido */
.rvs-rpg-panel {
    background: #17100b !important;
    background-image: 
        linear-gradient(135deg, rgba(26, 17, 11, 0.96) 0%, rgba(13, 8, 5, 0.98) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.04' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.15 0 0 0 0 0.12 0 0 0 0 0.09 0 0 0 0.15 0'/%3E%3CfeBlend mode='multiply'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E") !important;
    border: 2px solid #543c29 !important;
    outline: 1px dashed rgba(212, 175, 55, 0.35) !important;
    outline-offset: -6px !important;
    border-radius: 16px !important;
    padding: 16px 20px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75), inset 0 0 30px rgba(28, 19, 12, 0.6) !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Moldura de Bronze no Topo */
.rvs-rpg-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #543c29, #d4af37, #543c29) !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    z-index: 5;
}

/* Título e Cabeçalho do Painel */
.rvs-rpg-panel .panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.rvs-rpg-panel .panel-header h3 {
    font-family: 'Cinzel', 'Georgia', serif;
    font-weight: 800;
    color: #f6f0df !important;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.rvs-rpg-panel .panel-header h3 i {
    color: #dfb743 !important;
    filter: drop-shadow(0 0 5px rgba(223, 183, 67, 0.4));
}

.rvs-badge-title {
    font-family: 'MedievalSharp', 'Georgia', serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(212, 175, 55, 0.08);
    color: #dfb743;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    margin-left: 8px;
    vertical-align: middle;
}

/* Status Rúnicos */
.rvs-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
}

.status-dot.alive {
    background: #8cb88b;
    box-shadow: none;
}

.status-dot.dead {
    background: #d9534f;
    box-shadow: none;
}

.status-dot.reincarnating {
    background: #b08bb8;
    box-shadow: none;
}

.status-text-badge {
    font-family: 'MedievalSharp', 'Georgia', serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-alive { color: #8cb88b; }
.text-dead { color: #d9534f; }
.text-reincarnating { color: #b08bb8; }

/* Grid do RVS - Compacta */
.rvs-dashboard-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
    margin-top: 10px;
}

/* Coluna Esquerda */
.rvs-column-main {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Ficha do Jogador */
.rvs-player-header-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(28, 19, 12, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.rvs-avatar-class-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(84, 60, 41, 0.4) 0%, rgba(28, 19, 12, 0.8) 100%);
    border: 1.5px solid #d4af37;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: #dfb743;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    flex-shrink: 0;
}

.rvs-player-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.rvs-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rvs-name-row h4 {
    margin: 0;
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 1.12rem;
    font-weight: 900;
    color: #f6f0df;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.rvs-race-badge {
    font-family: 'MedievalSharp', 'Georgia', serif;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(84, 60, 41, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #c0a68d;
    padding: 1px 6px;
    border-radius: 3px;
}

.rvs-class-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-family: 'MedievalSharp', 'Georgia', serif;
}

.rvs-class-text {
    color: #dfb743;
    font-weight: 700;
    text-transform: capitalize;
}

.rvs-level-badge {
    color: #c0a68d;
    font-weight: 600;
}

.rvs-level-badge strong {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 0.95rem;
    color: #f6f0df;
    font-weight: 900;
}

/* 👑 RVS HERO COMBAT POWER BADGE - Medalhão de Latão Pulsante */
.rvs-combat-power-badge {
    background: linear-gradient(135deg, rgba(84, 60, 41, 0.8) 0%, rgba(28, 19, 12, 0.95) 100%) !important;
    border: 1.5px solid #d4af37 !important;
    border-radius: 10px !important;
    padding: 6px 12px !important;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), inset 0 0 8px rgba(212, 175, 55, 0.15) !important;
    transition: 0.3s ease;
}

.rvs-combat-power-badge:hover {
    transform: translateY(-1px);
    border-color: #f59e0b !important;
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.25), inset 0 0 8px rgba(245, 158, 11, 0.2) !important;
}

.icon-cp {
    font-size: 1.35rem !important;
    color: #dfb743 !important;
    filter: drop-shadow(0 0 5px rgba(223, 183, 67, 0.6)) !important;
}

.cp-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cp-title {
    font-family: 'MedievalSharp', 'Georgia', serif !important;
    font-size: 0.55rem !important;
    font-weight: 800 !important;
    color: #c0a68d !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase;
}

#rvs-combat-power {
    margin: 0 !important;
    font-family: 'Cinzel', 'Georgia', serif !important;
    font-size: 1.25rem !important;
    font-weight: 900 !important;
    color: #dfb743 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}

/* Barras de Progresso */
.rvs-progress-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(28, 19, 12, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 10px 14px;
}

.rvs-progress-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rvs-progress-info {
    display: flex;
    justify-content: space-between;
    font-family: 'MedievalSharp', 'Georgia', serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #c0a68d;
}

.rvs-progress-info i {
    margin-right: 5px;
    color: #dfb743;
}

.progress-val {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #f6f0df;
}

.rvs-progress-bar-bg {
    height: 7px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(84, 60, 41, 0.5);
    position: relative;
}

.rvs-progress-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.xp-fill {
    background: linear-gradient(90deg, #8c6623, #d4af37) !important;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.3) !important;
}

.energy-fill {
    background: linear-gradient(90deg, #7c1a1a, #bd2c2c) !important;
    box-shadow: 0 0 6px rgba(189, 44, 44, 0.3) !important;
}

.mp-fill {
    background: linear-gradient(90deg, #1b3d6c, #3a6fa5) !important;
    box-shadow: 0 0 6px rgba(58, 111, 165, 0.3) !important;
}

/* Recursos e Ouro */
.rvs-resources-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.resource-item {
    background: rgba(28, 19, 12, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s ease;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.4);
}

.resource-item:hover {
    background: rgba(84, 60, 41, 0.2);
    border-color: rgba(212, 175, 55, 0.35);
}

.resource-item i {
    font-size: 1.3rem;
}

.gold-color { color: #dfb743; text-shadow: 0 0 6px rgba(223, 183, 67, 0.3); }
.bank-color { color: #8cb88b; text-shadow: 0 0 6px rgba(140, 184, 139, 0.3); }
.arena-color { color: #d9534f; text-shadow: 0 0 6px rgba(217, 83, 79, 0.3); }

.resource-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.resource-info span {
    font-family: 'MedievalSharp', 'Georgia', serif;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #c0a68d;
    letter-spacing: 0.3px;
}

.resource-info h4 {
    margin: 2px 0 0 0;
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 0.88rem;
    font-weight: 800;
    color: #f6f0df;
}

/* Coluna Direita (Atributos e Cheat) */
.rvs-column-attributes {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rvs-section-title {
    font-family: 'MedievalSharp', 'Georgia', serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #dfb743;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 5px;
    text-align: left;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.rvs-section-title i {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Atributos Neutros */
.rvs-attributes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.attribute-card {
    background: rgba(28, 19, 12, 0.6) !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    border-radius: 10px !important;
    padding: 8px 10px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: 0.2s ease;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

.attribute-card:hover {
    background: rgba(84, 60, 41, 0.2) !important;
    border-color: rgba(212, 175, 55, 0.35) !important;
    transform: translateY(-1px);
}

.attr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.attr-abbr {
    font-family: 'MedievalSharp', 'Georgia', serif;
    font-size: 0.7rem;
    font-weight: 800;
}

.str-color { color: #bd3c2c; }
.agi-color { color: #8cb88b; }
.int-color { color: #3a6fa5; }
.vit-color { color: #df9b43; }
.luk-color { color: #b08bb8; }
.points-color { color: #dfb743; }

.attr-header strong {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #f6f0df;
}

.attr-label {
    font-family: 'MedievalSharp', 'Georgia', serif;
    font-size: 0.55rem;
    font-weight: 600;
    color: #c0a68d;
    text-transform: uppercase;
}

.points-card {
    background: rgba(212, 175, 55, 0.05) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

/* Atributos Derivados */
.derived-stats-grid {
    margin-top: 2px;
}

.derived-card {
    background: rgba(28, 19, 12, 0.6) !important;
    border: 1px dashed rgba(212, 175, 55, 0.2) !important;
}

.derived-card:hover {
    background: rgba(84, 60, 41, 0.2) !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
}

.atk-abbr { color: #b85c18; }
.def-abbr { color: #8a95a5; }
.eva-abbr { color: #4f7b58; }
.crit-abbr { color: #dfb035; }

/* Cheat Skill Card */
.rvs-cheat-skill-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

.cheat-skill-card-empty {
    background: rgba(28, 19, 12, 0.4) !important;
    border: 1px dashed rgba(212, 175, 55, 0.15) !important;
    border-radius: 12px !important;
    padding: 15px !important;
    color: #a68d75;
    font-family: 'MedievalSharp', 'Georgia', serif;
    font-size: 0.78rem;
    text-align: center;
}

.cheat-skill-card-active {
    background: linear-gradient(135deg, rgba(84, 60, 41, 0.8) 0%, rgba(28, 19, 12, 0.95) 100%) !important;
    border: 1.5px solid #d4af37 !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), inset 0 0 8px rgba(212, 175, 55, 0.15) !important;
}

.skill-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(28, 19, 12, 0.8);
    border: 1.2px solid #d4af37;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #dfb743;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.skill-info-box {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.skill-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.skill-title-row h5 {
    margin: 0;
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 0.92rem;
    font-weight: 800;
    color: #f6f0df;
}

.skill-rank-badge {
    font-family: 'MedievalSharp', 'Georgia', serif;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(212, 175, 55, 0.15);
    color: #dfb743;
    padding: 1px 6px;
    border-radius: 3px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.skill-desc {
    margin: 0;
    font-size: 0.72rem;
    color: #c0a68d;
    line-height: 1.35;
}

/* Card de Convite RVS */
.rvs-invite-panel {
    background: #17100b !important;
    background-image: 
        linear-gradient(135deg, rgba(26, 17, 11, 0.96) 0%, rgba(13, 8, 5, 0.98) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.04' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.15 0 0 0 0 0.12 0 0 0 0 0.09 0 0 0 0.15 0'/%3E%3CfeBlend mode='multiply'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E") !important;
    border: 2px solid #543c29 !important;
    outline: 1px dashed rgba(212, 175, 55, 0.3) !important;
    outline-offset: -6px !important;
    border-radius: 16px !important;
    padding: 20px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75) !important;
}

.invite-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.invite-icon-box {
    width: 54px;
    height: 54px;
    background: rgba(28, 19, 12, 0.8);
    border: 1.5px solid #d4af37;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #dfb743;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

.invite-text-box h3 {
    margin: 0 0 4px 0;
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #f6f0df;
}

.invite-text-box p {
    margin: 0;
    font-size: 0.78rem;
    color: #c0a68d;
    line-height: 1.45;
}

.invite-instructions {
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 0.72rem;
    color: #c0a68d;
    display: inline-block;
}

.invite-instructions span {
    font-weight: 800;
    color: #dfb743;
    text-transform: uppercase;
    margin-right: 6px;
    font-family: 'MedievalSharp', 'Georgia', serif;
}

.invite-instructions code {
    background: rgba(84, 60, 41, 0.6);
    color: #dfb743;
    padding: 1px 4px;
    border-radius: 3px;
    font-family: monospace;
    font-weight: bold;
}

.rvs-join-btn {
    font-family: 'MedievalSharp', 'Georgia', serif;
    font-size: 0.82rem !important;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #8b5a2b, #5c3a1a) !important;
    border: 1.5px solid #d4af37 !important;
    color: #f6f0df !important;
    padding: 10px 18px !important;
    border-radius: 8px !important;
    transition: 0.2s ease !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4) !important;
    font-weight: 800 !important;
}

.rvs-join-btn:hover {
    background: linear-gradient(135deg, #a06e3b, #704722) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25) !important;
}

/* Animações e Efeitos */
@keyframes pulse-green-glow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 3px rgba(140, 184, 139, 0.2)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 10px rgba(140, 184, 139, 0.5)); }
}

.pulse-green {
    animation: pulse-green-glow 3.5s infinite ease-in-out;
}

@keyframes pulse-gold-glow {
    0%, 100% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), inset 0 0 8px rgba(212, 175, 55, 0.15); border-color: #d4af37; }
    50% { box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35), inset 0 0 12px rgba(212, 175, 55, 0.3); border-color: #f59e0b; }
}

.pulse-gold {
    animation: pulse-gold-glow 3s infinite ease-in-out;
}

/* Responsividade RVS */
@media (max-width: 900px) {
    .rvs-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .invite-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
        justify-items: center;
    }
    
    .invite-instructions {
        display: block;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .rvs-player-header-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 15px;
    }
    
    .rvs-player-details {
        align-items: center;
        text-align: center;
    }
    
    .rvs-name-row {
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }
    
    .rvs-combat-power-badge {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        margin-top: 2px;
    }
}

@media (max-width: 600px) {
    .rvs-rpg-panel {
        min-width: 0;
        padding: 14px !important;
        overflow: hidden;
    }

    .rvs-rpg-panel .panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .rvs-rpg-panel .panel-header h3 {
        width: 100%;
        min-width: 0;
        flex-wrap: wrap;
        font-size: 1rem;
        line-height: 1.35;
    }

    .rvs-badge-title {
        max-width: 100%;
        margin-left: 0;
        white-space: normal;
        overflow-wrap: anywhere;
        line-height: 1.3;
    }

    .rvs-status-indicator {
        align-self: flex-start;
        min-width: 0;
    }

    .rvs-dashboard-grid,
    .rvs-column-main,
    .rvs-column-attributes,
    .rvs-player-details {
        min-width: 0;
        width: 100%;
    }

    .rvs-name-row h4,
    .rvs-class-row,
    .rvs-progress-info,
    .resource-info,
    .skill-info-box {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .rvs-progress-info {
        gap: 8px;
    }
}

@media (max-width: 500px) {
    .rvs-resources-box {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .rvs-attributes-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 6px !important;
    }
    
    .resource-item {
        padding: 8px 10px !important;
        gap: 8px !important;
    }
    
    .resource-item i {
        font-size: 1.15rem !important;
    }
    
    .resource-info h4 {
        font-size: 0.8rem !important;
    }
}

/* Card de Dica do Discord no RPG */
.rvs-discord-hint-card {
    background: rgba(28, 19, 12, 0.5) !important;
    border: 1px dashed rgba(212, 175, 55, 0.25) !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    margin-top: auto; /* Truque flexbox para empurrar o card para o fundo e preencher o vazio vertical */
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5) !important;
    transition: 0.3s ease;
}

.rvs-discord-hint-card:hover {
    border-color: rgba(212, 175, 55, 0.45) !important;
    background: rgba(84, 60, 41, 0.15) !important;
}

.rvs-discord-hint-card .hint-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'MedievalSharp', 'Georgia', serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #dfb743;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rvs-discord-hint-card .hint-header i {
    color: #5865F2; /* Cor azul Discord para realce */
    font-size: 0.95rem;
    filter: drop-shadow(0 0 2px rgba(88, 101, 242, 0.4));
}

.rvs-discord-hint-card p {
    margin: 0;
    font-size: 0.72rem;
    color: #c0a68d;
    line-height: 1.45;
}

.rvs-discord-hint-card code {
    background: rgba(84, 60, 41, 0.7);
    color: #f6f0df;
    padding: 1px 5px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: bold;
    border: 1px solid rgba(212, 175, 55, 0.15);
}
