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

:root {
    --ar: #a4161a;
    --dk: #343a40;
    --bk: #000000;
    --wh: #ffffff;
    --bg: #f5f5f5;
}

#artis-oracle-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 320px;
    background-color: var(--wh);
    color: var(--bk);
    z-index: 999999;
    font-family: 'Geologica', sans-serif;
    border: 2px solid var(--bk);
    border-radius: 0;
    box-shadow: 8px 8px 0 var(--ar);
    display: none; /* hidden by default */
}

#artis-oracle-bubble .oracle-header {
    background-color: var(--dk);
    color: var(--wh);
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--bk);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#artis-oracle-bubble .oracle-title {
    margin: 0;
}

#artis-oracle-bubble .oracle-close {
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
}

#artis-oracle-bubble .oracle-body {
    padding: 20px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    background-color: var(--bg);
}

#artis-oracle-bubble .oracle-message {
    margin: 0;
}

#artis-oracle-bubble .oracle-footer {
    padding: 15px;
    background-color: var(--bg);
    text-align: right;
    border-top: 2px solid var(--bk);
}

#artis-oracle-bubble .oracle-action-btn {
    background-color: var(--ar);
    color: var(--wh);
    border: 2px solid var(--bk);
    border-radius: 0;
    padding: 10px 15px;
    font-family: 'Geologica', sans-serif;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    box-shadow: 3px 3px 0 var(--bk);
    transition: opacity 0.2s ease;
}

#artis-oracle-bubble .oracle-action-btn:hover {
    opacity: 0.9;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    #artis-oracle-bubble {
        width: 90%;
        bottom: 20px;
        right: 5%;
        box-shadow: 4px 4px 0 var(--ar);
    }
    
    #artis-oracle-bubble .oracle-action-btn {
        width: 100%;
        display: block;
        margin-top: 10px;
    }
}
