/* /Components/CivicLevelUpModal.razor.rz.scp.css */
.levelup-overlay[b-1hyce1u2hg] {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(15px);
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    padding: 20px;
}

.levelup-card[b-1hyce1u2hg] {
    position: relative;
    max-width: 500px; width: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0.8) 100%);
    border: 2px solid var(--gold);
    border-radius: 40px;
    padding: 50px 40px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    text-align: center;
    overflow: hidden;
}

.apotheosis-header[b-1hyce1u2hg] {
    position: relative;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-rank-icon[b-1hyce1u2hg] {
    position: relative;
    font-size: 8rem;
    color: var(--gold);
    filter: drop-shadow(0 0 20px var(--gold-glow));
    animation: floating-b-1hyce1u2hg 3s infinite ease-in-out;
    z-index: 2;
}

.rank-num[b-1hyce1u2hg] {
    position: absolute;
    top: 55%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    font-weight: 900;
    color: black;
    font-family: 'Outfit', sans-serif;
}

.badge-halo[b-1hyce1u2hg] {
    position: absolute;
    width: 250px; height: 250px;
    background: conic-gradient(from 0deg, var(--gold), transparent, var(--gold), transparent, var(--gold));
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate-halo-b-1hyce1u2hg 10s linear infinite;
}

.glow-sphere[b-1hyce1u2hg] {
    position: absolute;
    width: 150px; height: 150px;
    background: var(--gold);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.2;
}

.rank-title[b-1hyce1u2hg] {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.btn-claim-glory[b-1hyce1u2hg] {
    background: var(--gold);
    color: black;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}
.btn-claim-glory:hover[b-1hyce1u2hg] {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}

.btn-share-glory[b-1hyce1u2hg] {
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}
.btn-share-glory:hover[b-1hyce1u2hg] { background: rgba(255,255,255,0.1); }

/* Particles */
.sparkle[b-1hyce1u2hg] {
    position: absolute;
    width: 4px; height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
}
.s1[b-1hyce1u2hg] { top: 20%; left: 20%; animation: particle-up-b-1hyce1u2hg 4s infinite 0s; }
.s2[b-1hyce1u2hg] { top: 70%; left: 80%; animation: particle-up-b-1hyce1u2hg 4s infinite 1.5s; }
.s3[b-1hyce1u2hg] { top: 40%; left: 30%; animation: particle-up-b-1hyce1u2hg 3s infinite 2s; }
.s4[b-1hyce1u2hg] { top: 60%; left: 10%; animation: particle-up-b-1hyce1u2hg 5s infinite 1s; }

@keyframes particle-up-b-1hyce1u2hg {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100px); opacity: 0; }
}

@keyframes rotate-halo-b-1hyce1u2hg {
    to { transform: rotate(360deg); }
}

@keyframes floating-b-1hyce1u2hg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.fade-in[b-1hyce1u2hg] { animation: fadeIn-b-1hyce1u2hg 0.5s forwards; }
.fade-out[b-1hyce1u2hg] { animation: fadeOut-b-1hyce1u2hg 0.5s forwards; }
.slide-up[b-1hyce1u2hg] { animation: slideUp-b-1hyce1u2hg 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.slide-down[b-1hyce1u2hg] { animation: slideDown-b-1hyce1u2hg 0.5s forwards; }

@keyframes fadeIn-b-1hyce1u2hg { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeOut-b-1hyce1u2hg { from { opacity: 1; } to { opacity: 0; } }
@keyframes slideUp-b-1hyce1u2hg { from { transform: translateY(100px) scale(0.8); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
@keyframes slideDown-b-1hyce1u2hg { from { transform: translateY(0); opacity: 1; } to { transform: translateY(100px); opacity: 0; } }
/* /Components/CivicNode.razor.rz.scp.css */
.civic-node-wrapper[b-v2g5c0xfy1] {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.node-bubble[b-v2g5c0xfy1] {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #1e1e24;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.3s;
    border: 3px solid #3f3f4e;
    overflow: hidden; 
}

.node-bubble:active[b-v2g5c0xfy1] {
    transform: scale(0.95);
}

.node-bubble.locked[b-v2g5c0xfy1] {
    background: #15151a;
    border-color: #2a2a35;
    cursor: not-allowed;
    color: #4a4a5a;
    font-size: 1.5rem;
}

/* Gold Theme Unified Styles */
.node-bubble.active[b-v2g5c0xfy1] {
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    background: #252530;
}

.node-bubble.active .icon-pulse-bg[b-v2g5c0xfy1] {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background: #ffd700;
    opacity: 0.15;
    animation: pulse-b-v2g5c0xfy1 2s infinite;
    z-index: 0;
}

@keyframes pulse-b-v2g5c0xfy1 {
    0% { transform: scale(0.8); opacity: 0.3; }
    100% { transform: scale(1.4); opacity: 0; }
}

.node-bubble.single .node-icon[b-v2g5c0xfy1] {
    font-size: 2.2rem;
    color: #ffd700;
    z-index: 1;
}

/* Split Nodes */
.node-bubble.split[b-v2g5c0xfy1] {
    display: grid;
}

.node-bubble.split-2[b-v2g5c0xfy1] { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
.node-bubble.split-3[b-v2g5c0xfy1] { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.node-bubble.split-3 .frag-0[b-v2g5c0xfy1] { grid-column: 1 / 3; grid-row: 1; }
.node-bubble.split-4[b-v2g5c0xfy1] { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }

.split-frag[b-v2g5c0xfy1] {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(0,0,0,0.2);
    z-index: 1;
    transition: background 0.3s;
}

.split-frag:hover[b-v2g5c0xfy1] {
    background: rgba(255,215,0,0.1);
}

.frag-icon[b-v2g5c0xfy1] {
    font-size: 1.3rem;
    color: rgba(255,215,0,0.6);
}

/* Completion States */
.split-frag.frag-completed[b-v2g5c0xfy1] {
    background: rgba(255, 215, 0, 0.15);
}
.split-frag.frag-completed .frag-icon[b-v2g5c0xfy1] {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.node-bubble.completed[b-v2g5c0xfy1] {
    background: #1a1a20;
    border-color: #ffd700;
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.node-bubble.completed .node-icon[b-v2g5c0xfy1],
.node-bubble.completed .frag-icon[b-v2g5c0xfy1] {
    color: #ffd700;
    opacity: 0.8;
}

/* Badges */
.check-badge[b-v2g5c0xfy1] {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 26px;
    height: 26px;
    background: #ffd700;
    color: #1a1a20;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.6);
    z-index: 5;
    animation: bounceIn-b-v2g5c0xfy1 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-check[b-v2g5c0xfy1] {
    width: 32px;
    height: 32px;
    font-size: 1.3rem;
    bottom: -8px;
    right: -8px;
}

@keyframes bounceIn-b-v2g5c0xfy1 {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
/* /Components/CivicPath.razor.rz.scp.css */
.civic-path-container[b-9fqtn7pewa] {
    background-color: #121218;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;
}

.path-header[b-9fqtn7pewa] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: rgba(30, 30, 40, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,215,0,0.1);
}

.text-gold[b-9fqtn7pewa] { color: #ffd700; }

.streak-badge[b-9fqtn7pewa] {
    background: rgba(255, 215, 0, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    color: #ffd700;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.path-scroller[b-9fqtn7pewa] {
    flex: 1;
    overflow-y: auto;
    position: relative;
}

.svg-container[b-9fqtn7pewa] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.path-svg[b-9fqtn7pewa] {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px; /* Maps to the 0-200 viewBox */
    height: 100%;
    overflow: visible;
}

.path-curve.glow-effect[b-9fqtn7pewa] {
    filter: drop-shadow(0 0 8px var(--path-color, #ffd700));
    opacity: 0.8;
}

.nodes-container[b-9fqtn7pewa] {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
}

.path-step[b-9fqtn7pewa] {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Path Levels / Colors */
.path-level-1[b-9fqtn7pewa] { --path-color: #cd7f32; } /* Bronce */
.path-level-2[b-9fqtn7pewa] { --path-color: #c0c0c0; } /* Plata */
.path-level-3[b-9fqtn7pewa] { --path-color: #ffd700; } /* Oro */
.path-level-4[b-9fqtn7pewa] { --path-color: #00ffff; } /* Diamante / Cíborg */
/* /Components/CivicQuestsPanel.razor.rz.scp.css */
.quests-dropdown[b-qndgjxj6sh] {
    position: absolute;
    top: 65px;
    right: 0;
    width: 260px;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, rgba(20,20,20,0.98) 0%, rgba(40,35,20,0.98) 100%);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.quests-dropdown.show[b-qndgjxj6sh] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.quests-body[b-qndgjxj6sh] {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quests-title[b-qndgjxj6sh] {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
}

.quest-item[b-qndgjxj6sh] {
    display: flex;
    gap: 12px;
    align-items: center;
    transition: 0.3s;
}
.quest-item.done[b-qndgjxj6sh] { opacity: 0.4; }

.quest-dot[b-qndgjxj6sh] {
    width: 10px; height: 10px;
    border: 2px solid var(--gold);
    border-radius: 50%;
}

.quest-info[b-qndgjxj6sh] { display: flex; flex-direction: column; line-height: 1.1; }
.quest-title-text[b-qndgjxj6sh] { font-size: 0.82rem; color: white; font-weight: 500; }
.quest-reward[b-qndgjxj6sh] { font-size: 0.68rem; color: var(--gold); font-weight: bold; }

.quest-completion-bonus[b-qndgjxj6sh] {
    background: linear-gradient(90deg, var(--gold), #ff8800);
    color: black;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
    .quests-dropdown[b-qndgjxj6sh] {
        width: 220px;
        right: 0;
        top: 60px;
    }
}
/* /Components/CongratulationModal.razor.rz.scp.css */
.congrat-overlay[b-fwfhmccimm] {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
}

.congrat-card[b-fwfhmccimm] {
    background: linear-gradient(145deg, rgba(30, 30, 45, 0.95), rgba(15, 15, 25, 0.98));
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 165, 0, 0.15);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    width: 90%;
    max-width: 420px;
    position: relative;
    overflow: hidden;
}

.text-gold[b-fwfhmccimm] { color: #ffd700; }
.text-dim[b-fwfhmccimm] { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; line-height: 1.5; }

.fade-in[b-fwfhmccimm] { animation: fadeIn-b-fwfhmccimm 0.4s ease forwards; }
.fade-out[b-fwfhmccimm] { animation: fadeOut-b-fwfhmccimm 0.4s ease forwards; }
.zoom-in[b-fwfhmccimm] { animation: zoomIn-b-fwfhmccimm 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.zoom-out[b-fwfhmccimm] { animation: zoomOut-b-fwfhmccimm 0.4s ease forwards; }

@keyframes fadeIn-b-fwfhmccimm { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeOut-b-fwfhmccimm { from { opacity: 1; } to { opacity: 0; } }
@keyframes zoomIn-b-fwfhmccimm { from { transform: scale(0.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes zoomOut-b-fwfhmccimm { from { transform: scale(1); opacity: 1; } to { transform: scale(0.8); opacity: 0; } }

.header-icon[b-fwfhmccimm] {
    animation: bounce-b-fwfhmccimm 2s infinite ease-in-out;
}

@keyframes bounce-b-fwfhmccimm { 
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.prestige-hud[b-uus31hg9dd] {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 15px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative; /* Para anclar el panel de quests */
}

.streak-flame[b-uus31hg9dd] {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.streak-flame.active[b-uus31hg9dd] {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px var(--gold));
}
.streak-flame:hover[b-uus31hg9dd] {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.6);
}
.streak-flame i[b-uus31hg9dd] {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px currentColor);
}
.streak-count[b-uus31hg9dd] {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: white;
}

/* 🔥 Variaciones de Llama */
.flame-warm i[b-uus31hg9dd] { color: #ff8800; animation: flicker-b-uus31hg9dd 0.8s infinite alternate; }
.flame-power[b-uus31hg9dd] { border-color: rgba(0, 229, 255, 0.4); }
.flame-power i[b-uus31hg9dd] { color: #00e5ff; animation: flicker-b-uus31hg9dd 0.6s infinite alternate; }
.flame-legend[b-uus31hg9dd] { border-color: rgba(255, 0, 191, 0.4); box-shadow: 0 0 10px rgba(255, 0, 191, 0.2); }
.flame-legend i[b-uus31hg9dd] { color: #ff00bf; animation: flicker-b-uus31hg9dd 0.4s infinite alternate; }
.flame-divine[b-uus31hg9dd] { 
    border-color: var(--gold); 
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); 
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0,0,0,0.6));
}
.flame-divine i[b-uus31hg9dd] { color: var(--gold); animation: flicker-god-b-uus31hg9dd 0.3s infinite alternate; }

@keyframes flicker-b-uus31hg9dd {
    0% { transform: scale(1) rotate(-2deg); filter: brightness(1); }
    100% { transform: scale(1.1) rotate(2deg); filter: brightness(1.3); }
}
@keyframes flicker-god-b-uus31hg9dd {
    0% { transform: scale(1.1) translateY(0); filter: brightness(1) drop-shadow(0 0 5px var(--gold)); }
    100% { transform: scale(1.3) translateY(-2px); filter: brightness(1.5) drop-shadow(0 0 15px var(--gold)); }
}

.pulse-ring[b-uus31hg9dd] {
    position: absolute;
    width: 100%; height: 100%;
    border: 2px solid currentColor;
    border-radius: 20px;
    opacity: 0;
    animation: pulse-ring-b-uus31hg9dd 2s infinite;
    left: 0; top: 0;
}
@keyframes pulse-ring-b-uus31hg9dd {
    0% { transform: scale(0.8); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* 🌑 Shadow HUD - Progress Bar across the bottom */
.shadow-hud[b-uus31hg9dd] {
    position: fixed; bottom: 0; left: 0; width: 100%; height: 6px;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    z-index: 10000; overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.shadow-hud-fill[b-uus31hg9dd] {
    height: 100%; width: 0; 
    background: linear-gradient(90deg, var(--gold), #ff8800, #00e5ff);
    transition: width 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px var(--gold-glow);
}
.shadow-hud-label[b-uus31hg9dd] {
    position: absolute; bottom: 10px; right: 20px;
    font-size: 0.65rem; color: var(--gold); font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
    opacity: 0.6; pointer-events: none;
}

@media (max-width: 768px) {
    .shadow-hud[b-uus31hg9dd] { height: 4px; }
    .shadow-hud-label[b-uus31hg9dd] { right: 10px; bottom: 6px; }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-kocwmrvqt1] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-kocwmrvqt1] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-kocwmrvqt1] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-kocwmrvqt1] {
    font-size: 1.1rem;
}

.bi[b-kocwmrvqt1] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-kocwmrvqt1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-kocwmrvqt1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-kocwmrvqt1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-kocwmrvqt1] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-kocwmrvqt1] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-kocwmrvqt1] {
        padding-bottom: 1rem;
    }

    .nav-item[b-kocwmrvqt1]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-kocwmrvqt1]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-kocwmrvqt1]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-kocwmrvqt1] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-kocwmrvqt1] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-kocwmrvqt1] {
        display: none;
    }

    .nav-scrollable[b-kocwmrvqt1] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/Agora.razor.rz.scp.css */
.inmersive-card-viewport[b-nw0sjyidgr] {
    perspective: 1000px;
    margin-top: 20px;
}
.inmersive-card[b-nw0sjyidgr] {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    padding: 30px !important;
    border-radius: 30px !important;
    position: relative;
}
.inmersive-progress[b-nw0sjyidgr] {
    position: absolute; top: 0; left: 0; width: 100%; height: 6px;
    background: rgba(255,255,255,0.05); border-radius: 30px 30px 0 0;
    overflow: hidden;
}
.inmersive-progress-fill[b-nw0sjyidgr] {
    height: 100%; background: var(--gold); border-radius: 0 30px 30px 0;
    transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px var(--gold-glow);
}
.inmersive-summary[b-nw0sjyidgr] {
    border-radius: 20px;
    border-left: 4px solid var(--gold) !important;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}
.inmersive-actions[b-nw0sjyidgr] {
    padding: 20px 0;
}
.inmersive-btn[b-nw0sjyidgr] {
    flex: 1; height: 80px; border-radius: 20px; border: none;
    font-size: 2.5rem; display: flex; align-items: center; justify-content: center;
    transition: 0.2s;
}
.btn-approve-xl[b-nw0sjyidgr] { 
    background: var(--approve); color: black; 
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}
.btn-approve-xl:hover:not(:disabled)[b-nw0sjyidgr] { transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 35px rgba(34, 197, 94, 0.5); }
.btn-reject-xl[b-nw0sjyidgr] { 
    background: var(--reject); color: white; 
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}
.btn-reject-xl:hover:not(:disabled)[b-nw0sjyidgr] { transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 35px rgba(239, 68, 68, 0.5); }

.inmersive-voted-overlay[b-nw0sjyidgr] {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    z-index: 10; border-radius: 30px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.voted-seal[b-nw0sjyidgr] { font-size: 5rem; text-align: center; animation: pop-in-b-nw0sjyidgr 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

@keyframes pop-in-b-nw0sjyidgr {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.glow-gold[b-nw0sjyidgr] {
    box-shadow: 0 0 15px var(--gold-glow);
}

.mini-avatar[b-nw0sjyidgr] { width: 32px; height: 32px; background: var(--glass-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--gold); border: 1px solid var(--gold); overflow:hidden; }
.hover-red:hover[b-nw0sjyidgr] { color: var(--reject) !important; }
.media-container[b-nw0sjyidgr] { overflow: hidden; border-radius: var(--radius-md); }
.link-preview-box[b-nw0sjyidgr] { background: var(--glass-1); padding: 1rem; border-radius: var(--radius-md); border: 1px solid var(--glass-border); display: flex; align-items: center; gap: 0.5rem; }

.voting-grid[b-nw0sjyidgr] { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 500px) { .voting-grid[b-nw0sjyidgr] { grid-template-columns: 1fr; } }

.btn-option[b-nw0sjyidgr] {
    background: var(--glass-1); border: 1px solid var(--glass-border); color: var(--text);
    padding: 0.9rem; border-radius: var(--radius-md); font-weight: 600; cursor: pointer;
    transition: all 0.2s;
}
.btn-option:hover[b-nw0sjyidgr] { border-color: var(--gold); background: rgba(212,175,55,0.08); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.btn-option.active[b-nw0sjyidgr] { border-color: var(--gold); background: rgba(255, 193, 7, 0.15); color: var(--gold); }

.modal-backdrop-glass[b-nw0sjyidgr] {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(20px);
    z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.report-modal[b-nw0sjyidgr] { max-width: 450px; width: 100%; text-align: center; border-top: 3px solid var(--reject); padding: 2rem !important; }
.report-icon-header[b-nw0sjyidgr] { font-size: 4rem; margin-bottom: 1rem; filter: drop-shadow(0 0 15px var(--reject-glow)); }
.report-warning-box[b-nw0sjyidgr] { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); border-radius: 12px; padding: 1rem; color: var(--text-dim); text-align: left; }

.trending-agora-card[b-nw0sjyidgr] {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.active-approve[b-nw0sjyidgr] { background: var(--approve) !important; color: #000 !important; filter: drop-shadow(0 0 10px var(--approve-glow)); }
.active-reject[b-nw0sjyidgr] { background: var(--reject) !important; color: #fff !important; filter: drop-shadow(0 0 10px var(--reject-glow)); }

.theme-urgent[b-nw0sjyidgr] { border-top-color: var(--reject) !important; box-shadow: 0 0 20px rgba(239, 68, 68, 0.15); }
.theme-creative[b-nw0sjyidgr] { border-top-color: var(--cyan) !important; box-shadow: 0 0 20px rgba(6, 182, 212, 0.15); }
.theme-solemn[b-nw0sjyidgr] { border-top-color: var(--gold) !important; background: rgba(0,0,0,0.4); }

/* Premium Rotating Shine Effect */
.premium-popup[b-nw0sjyidgr] { position: relative; overflow: hidden; transform-style: preserve-3d; }
.premium-popup[b-nw0sjyidgr]::before {
    content: ''; position: absolute; top: -100%; left: -100%; width: 300%; height: 300%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 160deg,
        rgba(255,255,255,0.08) 180deg,
        transparent 200deg,
        transparent 360deg
    );
    animation: rotate-shine-b-nw0sjyidgr 12s linear infinite;
    pointer-events: none; z-index: 0;
}
.premium-content[b-nw0sjyidgr] { position: relative; z-index: 5; }
@keyframes rotate-shine-b-nw0sjyidgr {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.pulse-gold[b-nw0sjyidgr] { filter: drop-shadow(0 0 15px rgba(212,175,55,0.4)); }
.pulse-cyan[b-nw0sjyidgr] { filter: drop-shadow(0 0 15px rgba(0,229,255,0.4)); }
.pulse-white[b-nw0sjyidgr] { filter: drop-shadow(0 0 15px rgba(255,255,255,0.4)); }

/* Custom Switch Styling Fix */
.custom-switch .form-check-input[b-nw0sjyidgr] { width: 3.2em; height: 1.6em; background-color: rgba(255,255,255,0.1); border-color: var(--glass-border); cursor: pointer; margin-top: 0; position: static; float: none; }
.custom-switch .form-check-input:checked[b-nw0sjyidgr] { background-color: var(--gold); border-color: var(--gold); box-shadow: 0 0 12px var(--gold-glow); }
.custom-switch .form-check-input:focus[b-nw0sjyidgr] { border-color: var(--gold); box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25); }
.custom-switch-container[b-nw0sjyidgr] { background: rgba(0,0,0,0.2); padding: 0.3rem 0.8rem; border-radius: var(--radius-pill); border: 1px solid var(--glass-border); transition: all 0.3s; }
.custom-switch-container:hover[b-nw0sjyidgr] { border-color: rgba(212,175,55,0.4); background: rgba(0,0,0,0.3); }

.custom-modal-container[b-nw0sjyidgr] { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 2000; }
.luxe-modal[b-nw0sjyidgr] {
    background: linear-gradient(135deg, rgba(20,20,20,0.98) 0%, rgba(40,35,20,0.99) 100%);
    border: 2px solid var(--gold);
    animation: modal-zoom-b-nw0sjyidgr 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.progress-bar-light[b-nw0sjyidgr] { height: 6px; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; }
.progress-fill[b-nw0sjyidgr] { height: 100%; background: linear-gradient(90deg, var(--gold), #fff); transition: width 0.8s ease; }
.milestone-box[b-nw0sjyidgr] { background: rgba(0,0,0,0.3); padding: 1.2rem; border-radius: 16px; border: 1px solid var(--glass-border); }

@keyframes modal-zoom-b-nw0sjyidgr {
    from { transform: scale(0.8); opacity: 0; filter: blur(10px); }
    to { transform: scale(1); opacity: 1; filter: blur(0); }
}
.ff-outfit[b-nw0sjyidgr] { font-family: 'Outfit', sans-serif; }
.fw-900[b-nw0sjyidgr] { font-weight: 900; }

.carousel-dots-overlay[b-nw0sjyidgr] {
    position: absolute; bottom: 10px; width:100%;
    display:flex; justify-content:center; gap: 6px; z-index: 10;
}
.dot-sm[b-nw0sjyidgr] { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; border: 1px solid rgba(0,0,0,0.5); }
.dot-sm.active[b-nw0sjyidgr] { background: var(--gold); width: 20px; border-radius: 4px; box-shadow: 0 0 8px var(--gold-glow); }

/* Thematic Card Styles */
.theme-urgent[b-nw0sjyidgr] { border-left: 4px solid var(--reject) !important; background: linear-gradient(135deg, rgba(239,68,68,0.05) 0%, rgba(5,7,10,0.5) 100%) !important; }
.theme-creative[b-nw0sjyidgr] { border-left: 4px solid var(--cyan) !important; background: linear-gradient(135deg, rgba(0,229,255,0.05) 0%, rgba(5,7,10,0.5) 100%) !important; }
.theme-solemn[b-nw0sjyidgr] { border-left: 4px solid var(--gold) !important; background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(5,7,10,0.5) 100%) !important; }

.theme-creative h2[b-nw0sjyidgr] { font-family: 'Outfit', sans-serif; font-style: italic; }
.theme-solemn h2[b-nw0sjyidgr] { letter-spacing: 1px; font-weight: 900; }

.object-fit-contain[b-nw0sjyidgr] { object-fit: contain; }

.fixed-action-bar[b-nw0sjyidgr] {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: auto;
    min-width: 320px;
    max-width: 95%;
}
.btn-prev-agora[b-nw0sjyidgr] {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.btn-prev-agora:hover[b-nw0sjyidgr] {
    background: rgba(212,175,55,0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.1);
}
.btn-next-agora[b-nw0sjyidgr] {
    pointer-events: auto;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: 1px solid var(--gold);
    color: #000 !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    padding: 0.8rem 2.5rem !important;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 10px 40px rgba(212,175,55,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-next-agora:hover[b-nw0sjyidgr] {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(212,175,55,0.5);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .fixed-action-bar[b-nw0sjyidgr] {
        bottom: 0;
        left: 0;
        width: 100%;
        transform: none;
        padding: 1.2rem;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
        gap: 1rem;
        border-top: 1px solid rgba(212,175,55,0.2);
    }
    .btn-next-agora[b-nw0sjyidgr] {
        flex: 1;
        justify-content: center;
    }
    .btn-prev-agora[b-nw0sjyidgr] {
        width: 54px;
        height: 54px;
    }
}
.comment-pulse[b-nw0sjyidgr] {
    border-right: 3px solid var(--gold);
    transition: transform 0.2s;
}
.comment-pulse:hover[b-nw0sjyidgr] { transform: translateX(5px); background: rgba(255,255,255,0.05); }

.animate-pulse[b-nw0sjyidgr] { animation: pulse-opacity-b-nw0sjyidgr 2s infinite; }
@keyframes pulse-opacity-b-nw0sjyidgr {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.shadow-glow-reject[b-nw0sjyidgr] { box-shadow: 0 0 15px var(--reject-glow); }

.smart-summary-box[b-nw0sjyidgr] {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0.2) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-right: 4px solid var(--gold);
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
}
.smart-summary-box[b-nw0sjyidgr]::after {
    content: 'AI';
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--gold);
    color: black;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Calor Cívico & Reactions */
.heat-pulse-badge[b-nw0sjyidgr] {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}
.heat-pulse-badge i[b-nw0sjyidgr] { font-size: 1.5rem; margin-bottom: 2px; }
.pulse-hot i[b-nw0sjyidgr] { color: #ff4d00; animation: fire-pulse-b-nw0sjyidgr 1s infinite alternate; }
.pulse-warm i[b-nw0sjyidgr] { color: #ffcc00; }
.heat-value[b-nw0sjyidgr] { font-family: 'Outfit', sans-serif; font-weight: 900; color: white; line-height: 1; }
.heat-label[b-nw0sjyidgr] { font-size: 0.5rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; }

@keyframes fire-pulse-b-nw0sjyidgr {
    from { transform: scale(1); filter: drop-shadow(0 0 5px #ff4d00); }
    to { transform: scale(1.2); filter: drop-shadow(0 0 15px #ff4d00); }
}

.reactions-container[b-nw0sjyidgr] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.floating-reaction[b-nw0sjyidgr] {
    position: absolute;
    bottom: 20%;
    left: 50%;
    font-size: 3rem;
    animation: float-up-fade-b-nw0sjyidgr 2s forwards ease-out;
}

@keyframes float-up-fade-b-nw0sjyidgr {
    0% { transform: translate(-50%, 0) scale(0.5); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translate(-50%, -400px) scale(1.5); opacity: 0; }
}

/* Pulsos en Vivo */
.live-pulse-bar[b-nw0sjyidgr] {
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}
.pulse-fill[b-nw0sjyidgr] { height: 100%; transition: width 1s ease; }
.pulse-fill.approve[b-nw0sjyidgr] { background: linear-gradient(90deg, #10b981, #34d399); box-shadow: 0 0 10px rgba(16,185,129,0.3); }
.pulse-fill.reject[b-nw0sjyidgr] { background: linear-gradient(90deg, #ef4444, #f87171); box-shadow: 0 0 10px rgba(239,68,68,0.3); }
.pulse-fill.neutral[b-nw0sjyidgr] { background: rgba(255,255,255,0.1); }

/* -- Inmersive Mode Enhanced Feedback -- */
.inmersive-results-overlay[b-nw0sjyidgr] {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(15px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.inmersive-voting-grid[b-nw0sjyidgr] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    width: 100%;
}

.inmersive-btn-thematic[b-nw0sjyidgr] {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 100%;
}

.inmersive-btn-thematic:hover:not(:disabled)[b-nw0sjyidgr] {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.inmersive-btn-thematic:active:not(:disabled)[b-nw0sjyidgr] {
    transform: scale(0.95);
}

.thematic-text[b-nw0sjyidgr] {
    color: white;
    font-weight: 800;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.aura-effect[b-nw0sjyidgr] {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, var(--gold) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.inmersive-btn-thematic:hover .aura-effect[b-nw0sjyidgr] {
    opacity: 0.2;
}

.voted-seal-mini[b-nw0sjyidgr] {
    font-size: 2.8rem;
    opacity: 0.9;
    filter: drop-shadow(0 0 10px var(--gold-glow));
}

.vote-meter-inmersive[b-nw0sjyidgr] {
    height: 14px;
    width: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 7px;
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.vote-meter-inmersive div[b-nw0sjyidgr] { height: 100%; transition: width 0.8s ease; }
.vote-meter-inmersive .bar-approve[b-nw0sjyidgr] { background: var(--approve); box-shadow: 0 0 15px var(--approve); }
.vote-meter-inmersive .bar-reject[b-nw0sjyidgr] { background: var(--reject); box-shadow: 0 0 15px var(--reject); }

.shadow-gold[b-nw0sjyidgr] {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3) !important;
}

@media (max-width: 480px) {
    .inmersive-voting-grid[b-nw0sjyidgr] {
        grid-template-columns: 1fr;
    }
    .inmersive-btn-thematic[b-nw0sjyidgr] {
        min-height: 70px;
        padding: 0.8rem;
    }
}

.text-gold-glow[b-nw0sjyidgr] {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hover-gold:hover[b-nw0sjyidgr] {
    color: var(--gold) !important;
    opacity: 1 !important;
}

.card-agora-footer[b-nw0sjyidgr] {
    z-index: 10;
    position: relative;
}

/* Premium Primary Pulsing Button */
.btn-gold-pulse[b-nw0sjyidgr] {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: 1px solid var(--gold);
    color: #000 !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    animation: button-pulse-glow-b-nw0sjyidgr 3s infinite;
}

.btn-gold-pulse:hover[b-nw0sjyidgr] {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

.btn-gold-pulse:active[b-nw0sjyidgr] {
    transform: scale(0.98);
}

@keyframes button-pulse-glow-b-nw0sjyidgr {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 20px 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
