.asqb-card {
    max-width: 750px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eeeeee;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    padding: 40px 25px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.asqb-text {
    font-size: 22px;
    color: #222;
    margin-bottom: 30px;
    line-height: 1.6;
}

.asqb-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.asqb-btn {
    background: #f5f5f5;
    border: none;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.asqb-btn:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.asqb-btn:active {
    transform: scale(0.95);
}

.asqb-like.active {
    color: red;
}

.asqb-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.asqb-toast.show {
    opacity: 1;
}

@media (max-width: 480px) {
    .asqb-text {
        font-size: 18px;
    }
}
